コード例 #1
0
ファイル: PatientImpl.cs プロジェクト: buyonlinemahi/AR
 public int AddPatient(DLModel.Patient patient)
 {
     return(_patientRepository.Add((DLModel.Patient) new DLModel.Patient().InjectFrom(patient)).PatientID);
 }
コード例 #2
0
ファイル: PatientImpl.cs プロジェクト: buyonlinemahi/AR
 public int UpdatePatient(DLModel.Patient patient)
 {
     return(_patientRepository.UpdatePatient(patient));
 }