split patient model
parent
3aeb84d790
commit
ed2f0ebcf8
@ -0,0 +1,44 @@
|
||||
class PatientModel {
|
||||
int ProjectID;
|
||||
int ClinicID;
|
||||
int DoctorID;
|
||||
String FirstName;
|
||||
String MiddleName;
|
||||
String LastName;
|
||||
String PatientMobileNumber;
|
||||
String PatientIdentificationID;
|
||||
int PatientID;
|
||||
String From;
|
||||
String To;
|
||||
int LanguageID;
|
||||
String stamp;
|
||||
String IPAdress;
|
||||
double VersionID;
|
||||
int Channel;
|
||||
String TokenID;
|
||||
String SessionID;
|
||||
bool IsLoginForDoctorApp;
|
||||
bool PatientOutSA;
|
||||
|
||||
PatientModel(
|
||||
{this.ProjectID,
|
||||
this.ClinicID,
|
||||
this.DoctorID,
|
||||
this.FirstName,
|
||||
this.MiddleName,
|
||||
this.LastName,
|
||||
this.PatientMobileNumber,
|
||||
this.PatientIdentificationID,
|
||||
this.PatientID,
|
||||
this.From,
|
||||
this.To,
|
||||
this.LanguageID,
|
||||
this.stamp,
|
||||
this.IPAdress,
|
||||
this.VersionID,
|
||||
this.Channel,
|
||||
this.TokenID,
|
||||
this.SessionID,
|
||||
this.IsLoginForDoctorApp,
|
||||
this.PatientOutSA});
|
||||
}
|
||||
Loading…
Reference in New Issue