Ejemplo n.º 1
0
 public PhysitianHospitalAccountsController(Physitian loggedPhysitian)
 {
     this.loggedPhysitian          = loggedPhysitian;
     this.hospitalService          = new HospitalService();
     this.reportService            = new ReportService();
     this.patientAccountsService   = new PatientAccountsService();
     this.physitianScheduleService = new PhysitianScheduleService(loggedPhysitian);
 }
Ejemplo n.º 2
0
 public PhysitianScheduleController(Physitian loggedPhysitian)
 {
     this.loggedPhysitian          = loggedPhysitian;
     this.physitianScheduleService = new PhysitianScheduleService(loggedPhysitian);
 }