public Model.Operations DoctorPriority(Model.Doctor doctor)
 {
     // TODO: implement
     return(null);
 }
 public void ReschedulePatient(DateTime tImeStart, DateTime timeEnd, Model.Doctor doctor, Model.Room room, String id)
 {
     // TODO: implement
 }
 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>();
 }
 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;
 }