You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
4.5 KiB

using System;
namespace DPMService.Models
{
public class Patient
{
public int ID { get; set; } = 0;
public string Pat { get; set; } = "";
public DateTime? TransferDateiTime { get; set; } = DateTime.Now;
public int? Transferdirection { get; set; } = 0;
}
public class privat
{
public string ahvnr { get; set; } = "";
public bool? aktiv { get; set; } = true;
public bool? behandler { get; set; } = true;
public string bemerkung { get; set; } = "";
public string beruf { get; set; } = "";
public bool? betreibung { get; set; } = true;
public string briefanrede { get; set; } = "";
public string coadresse { get; set; } = "";
public bool? dhpat { get; set; } = true;
public int? dhrecall { get; set; } = 0;
public string dhrecallbemerkung { get; set; } = "";
public float? dhrecallfixmonat { get; set; } = 0;
public bool? dhrecalltelefon { get; set; } = true;
public int? dhrecalltyp { get; set; } = 0;
public string E_Mail { get; set; } = "";
public DateTime? erstellt_am { get; set; } = DateTime.Now;
public int? estyp { get; set; } = 0;
public string faxg { get; set; } = "";
public string faxp { get; set; } = "";
public string fsnr { get; set; } = "";
public bool? garant { get; set; } = true;
public DateTime? gebdat { get; set; } = DateTime.Now;
public int? geschlecht { get; set; } = 0;
public bool? gesvertreter { get; set; } = true;
public string GLN { get; set; } = "";
public DateTime? gueltigab { get; set; } = DateTime.Now;
public DateTime? gueltigbis { get; set; } = DateTime.Now;
public bool? hausarzt { get; set; } = true;
public string ivnr { get; set; } = "";
public string Kanton { get; set; } = "";
public string kknr { get; set; } = "";
public string korranrede { get; set; } = "";
public string korrcoadresse { get; set; } = "";
public string korrname { get; set; } = "";
public string korrort { get; set; } = "";
public string korrplz { get; set; } = "";
public string korrstrasse { get; set; } = "";
public string korrtitel { get; set; } = "";
public string korrvorname { get; set; } = "";
public bool? Mail_Kommunikation { get; set; } = true;
public int? mandant { get; set; } = 0;
public int? mutierer { get; set; } = 0;
public DateTime? mutiert_am { get; set; } = DateTime.Now;
public string name { get; set; } = "";
public string natel { get; set; } = "";
public bool? nichtannehmen { get; set; } = true;
public bool? nichtaufbieten { get; set; } = true;
public int? nranrede { get; set; } = 0;
public int? nrarbeitgeber { get; set; } = 0;
public int? nrbehandler { get; set; } = 0;
public int? nrdh { get; set; } = 0;
public int? nrfs { get; set; } = 0;
public int? nrgarant { get; set; } = 0;
public int? nrgesvertreter { get; set; } = 0;
public int? nrhausarzt { get; set; } = 0;
public int? nriv { get; set; } = 0;
public int? nrkk { get; set; } = 0;
public int nrprivat { get; set; } = 0; public int? nrrgtyp { get; set; } = 0;
public int? nrtitel { get; set; } = 0;
public int? nrvs { get; set; } = 0;
public int? nrzahnarzt { get; set; } = 0;
public string ort { get; set; } = "";
public bool? patient { get; set; } = true;
public string plz { get; set; } = "";
public float? rabatt { get; set; } = 0;
public string sprache { get; set; } = "";
public int? status { get; set; } = 0; public string strasse { get; set; } = "";
public int? taxpunkttyp { get; set; } = 0;
public string telg { get; set; } = "";
public string telp { get; set; } = "";
public string vorname { get; set; } = ""; public string vsnr { get; set; } = "";
public string web { get; set; } = "";
public bool? zahnarzt { get; set; } = true; public int? zazrecall { get; set; } = 0; public string zazrecallbemerkung { get; set; } = "";
public float? zazrecallfixmonat { get; set; } = 0;
public bool? zazrecalltelefon { get; set; } = true; public int? zazrecalltyp { get; set; } = 0; public string ZSR { get; set; } = "";
}
}