public string AddPatient(string userName, WorklistPatient patient) { MWLDataset ds = new MWLDataset(); ds.AddPatient(patient); _DataAccessAgent.UpdateMWL(ds); return(patient.PatientID); }
public void AddPatient(WCFPatient patient, MWLDataset ds) { Guard.ArgumentNotNullOrEmpty(patient.PatientID, "PatientID"); Guard.ArgumentNotNullOrEmpty(patient.IssuerOfPatientID, "IssuerOfPatientID"); Guard.ArgumentNotNullOrEmpty(patient.PatientNameFamilyName + patient.PatientNameGivenName + patient.PatientNameMiddleName, "Patient Name"); NullTheEmpty(patient); ds.AddPatient(patient); }
public void AddPatient(WCFPatient patient) { Guard.ArgumentNotNullOrEmpty(patient.PatientID, "PatientID"); Guard.ArgumentNotNullOrEmpty(patient.IssuerOfPatientID, "IssuerOfPatientID"); Guard.ArgumentNotNullOrEmpty(patient.PatientNameFamilyName + patient.PatientNameGivenName + patient.PatientNameMiddleName, "Patient Name"); NullTheEmpty(patient); using (MWLDataset ds = new MWLDataset()) { ds.AddPatient(patient); DB.DataAccess.UpdateMWL(ds); } }