Ejemplo n.º 1
0
 public PatientController(IPatientService patienService,
                          ICommonSerivce commonSerivce,
                          IDoctorService doctorService,
                          IScheduleService scheduleService)
 {
     this.patienService   = patienService;
     this.commonSerivce   = commonSerivce;
     this.doctorService   = doctorService;
     this.scheduleService = scheduleService;
 }
Ejemplo n.º 2
0
 public DoctorController(IDoctorService doctorService,
                         ICommonSerivce commonSerivce, IScheduleService scheduleService,
                         IPatientService patientService,
                         IConclusionService conclusionService,
                         IPatientDataService patientDataService)
 {
     this.doctorService      = doctorService;
     this.commonSerivce      = commonSerivce;
     this.scheduleService    = scheduleService;
     this.patientService     = patientService;
     this.conclusionService  = conclusionService;
     this.patientDataService = patientDataService;
 }