コード例 #1
0
 public CommContracts.Registration CallNextRegistration(int nDepartmentID, DateTime dateTime)
 {
     BLL.Registration temp = new BLL.Registration();
     return(temp.CallNextRegistration(nDepartmentID, dateTime));
 }
コード例 #2
0
 public List <CommContracts.Registration> GetDepartmentRegistrationList(int DepartmentID, int EmployeeID, DateTime startDate, DateTime endDate)
 {
     BLL.Registration temp = new BLL.Registration();
     return(temp.GetDepartmentRegistrationList(DepartmentID, EmployeeID, startDate, endDate));
 }
コード例 #3
0
 // 查找某个患者的挂号记录
 public List <CommContracts.Registration> GetPatientRegistrations(int PatientID, DateTime?DateTime = null)
 {
     BLL.Registration temp = new BLL.Registration();
     return(temp.GetPatientRegistrations(PatientID, DateTime));
 }
コード例 #4
0
 public string getPatientBMIMsg(int RegistrationID)
 {
     BLL.Registration temp = new BLL.Registration();
     return(temp.getPatientBMIMsg(RegistrationID));
 }
コード例 #5
0
 public List <CommContracts.Registration> GetAllClinicPatients(DateTime startDate, DateTime endDate, string strFindName = "", bool HavePay = false)
 {
     BLL.Registration temp = new BLL.Registration();
     return(temp.GetAllClinicPatients(startDate, endDate, strFindName, HavePay));
 }
コード例 #6
0
 public List <CommContracts.Registration> getAllRegistration(int EmployeeID = 0, DateTime?VistTime = null)
 {
     BLL.Registration temp = new BLL.Registration();
     return(temp.getAllRegistration(EmployeeID, VistTime));
 }
コード例 #7
0
 public bool UpdateRegistration(CommContracts.Registration registration)
 {
     BLL.Registration temp = new BLL.Registration();
     return(temp.UpdateRegistration(registration));
 }
コード例 #8
0
 public bool SaveRegistration(Registration registration)
 {
     BLL.Registration temp = new BLL.Registration(registration);
     return(temp.SaveRegistration());
 }