Ejemplo n.º 1
0
 public UserService(EmployeeService employeeService, PatientService patientService)
 {
     this._employeeService = employeeService;
     this._patientService  = patientService;
 }
Ejemplo n.º 2
0
 public RoomService(RoomRepository roomRepository, RenovationRepository renovationRepository, MedicalExamService medicalExamService, PatientService patientService, ResourceService resourceService)
 {
     this._resourceService      = resourceService;
     this._patientService       = patientService;
     this._roomRepository       = roomRepository;
     this._renovationRepository = renovationRepository;
     this._medicalExamService   = medicalExamService;
 }