|
|
|
|
@ -81,7 +81,37 @@ class ReferralRequest {
|
|
|
|
|
patientOutSA = json['PatientOutSA'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJsonForVidaThree() {
|
|
|
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
|
|
|
data['RoomID'] = this.roomID;
|
|
|
|
|
data['ReferralClinic'] = this.referralClinic;
|
|
|
|
|
data['ReferralDoctor'] = this.referralDoctor;
|
|
|
|
|
data['CreatedBy'] = this.createdBy;
|
|
|
|
|
data['EditedBy'] = this.editedBy;
|
|
|
|
|
data['PatientID'] = this.patientID;
|
|
|
|
|
data['PatientTypeID'] = this.patientTypeID;
|
|
|
|
|
data['ReferringClinic'] = this.referringClinic;
|
|
|
|
|
data['ReferringDoctor'] = this.referringDoctor;
|
|
|
|
|
data['ProjectID'] = this.projectID;
|
|
|
|
|
data['AdmissionNo'] = this.admissionNo;
|
|
|
|
|
data['ReferringDoctorRemarks'] = this.referringDoctorRemarks;
|
|
|
|
|
data['Priority'] = this.priority;
|
|
|
|
|
data['Frequency'] = this.frequency;
|
|
|
|
|
data['Extension'] = this.extension;
|
|
|
|
|
data['LanguageID'] = this.languageID;
|
|
|
|
|
data['stamp'] = this.stamp;
|
|
|
|
|
data['IPAdress'] = this.iPAdress;
|
|
|
|
|
data['VersionID'] = this.versionID;
|
|
|
|
|
data['Channel'] = this.channel;
|
|
|
|
|
data['TokenID'] = this.tokenID;
|
|
|
|
|
data['SessionID'] = this.sessionID;
|
|
|
|
|
data['IsLoginForDoctorApp'] = this.isLoginForDoctorApp;
|
|
|
|
|
data['PatientOutSA'] = this.patientOutSA;
|
|
|
|
|
data['ToDate'] = this.toDate;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
Map<String, dynamic> toJsonForVidaPlus() {
|
|
|
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
|
|
|
data['RoomID'] = this.roomID;
|
|
|
|
|
data['ReferralClinic'] = this.referralClinic;
|
|
|
|
|
|