コード例 #1
0
 public Model.Operations DoctorPriority(Model.Doctor doctor)
 {
     // TODO: implement
     return(null);
 }
コード例 #2
0
 public void ReschedulePatient(DateTime tImeStart, DateTime timeEnd, Model.Doctor doctor, Model.Room room, String id)
 {
     // TODO: implement
 }
コード例 #3
0
 public Appointment DoctorPriority(Model.Doctor parameter1)
 {
     // TODO: implement
     return(null);
 }
コード例 #4
0
 static Information()
 {
     CurrentUser = new Doctor();
     Medicine    = new Medicine();
     UsePower    = new Dictionary <int, string>();
 }
コード例 #5
0
 public Appointment ScedulePatient(DateTime timeStart, DateTime endTime, Model.Doctor doctor, Model.Room room, String id)
 {
     // TODO: implement
     return(null);
 }
コード例 #6
0
 partial void UpdateDoctor(Doctor instance);
コード例 #7
0
 partial void DeleteDoctor(Doctor instance);
コード例 #8
0
 partial void InsertDoctor(Doctor instance);
コード例 #9
0
 private void detach_Doctor(Doctor entity)
 {
     this.SendPropertyChanging();
     entity.Config = null;
 }
コード例 #10
0
 private void attach_Doctor(Doctor entity)
 {
     this.SendPropertyChanging();
     entity.Config = this;
 }
コード例 #11
0
 public Appointment(DateTime startTime, Doctor doctor, TypeOfAppointment type)
 {
     StartTime   = startTime;
     this.Doctor = doctor;
     this.Type   = type;
 }
コード例 #12
0
 public Appointment(DateTime date, TypeOfAppointment type, Room room, Patient patient, Doctor doctor)
 {
     this.StartTime = date;
     this.Type      = type;
     this.Room      = room;
     this.Patient   = patient;
     this.Doctor    = doctor;
 }