예제 #1
0
 public FormDoctorInfoUpdate(Doctor doctor)
 {
     InitializeComponent();
     this.doctor = doctor;
     bllDoctor   = new BLLDoctor();
     cities      = new List <City>();
     counties    = new List <County>();
 }
예제 #2
0
 public FormDoctorAppointment(Doctor doctor)
 {
     InitializeComponent();
     medicines    = new List <Medicine>();
     bllDoctor    = new BLLDoctor();
     prescription = new List <Medicine>();
     this.doctor  = doctor;
 }
 public FormMemberChangePassword(Doctor doctor)
 {
     InitializeComponent();
     this.doctor = doctor;
     bllDoctor   = new BLLDoctor();
 }
예제 #4
0
 public FormDoctorInfo(Doctor doctor)
 {
     InitializeComponent();
     bllDoctor   = new BLLDoctor();
     this.doctor = doctor;
 }
 public FormDoctorAppointmentHistory(Doctor doctor)
 {
     InitializeComponent();
     this.doctor = doctor;
     bllDoctor   = new BLLDoctor();
 }