Esempio n. 1
0
 public AccountController(
     UserManager <User> userManager,
     SignInManager <User> signInManager,
     IUserService customerService,
     IResidentContactService residentContactService)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _customerService        = customerService;
     _residentContactService = residentContactService;
 }
 public ResidentController(
     IResidentService residentService,
     IResidentContactService residentContactService,
     IAppointmentService appointmentService,
     IResidentDoctorService residentDoctorService,
     IObservationService observationService,
     IResidentAnalyzesService residentAnalyzesService,
     IResidentDrugService residentDrugService,
     IResidentManipulationService residentManipulationService)
 {
     _residentService             = residentService;
     _residentContactService      = residentContactService;
     _appointmentService          = appointmentService;
     _residentDoctorService       = residentDoctorService;
     _observationService          = observationService;
     _residentAnalyzesService     = residentAnalyzesService;
     _residentDrugService         = residentDrugService;
     _residentManipulationService = residentManipulationService;
 }