public BloodBanksController(
     IBloodBanksService bloodBanksService,
     UserManager <ApplicationUser> userManager,
     IHospitalsService hospitalsService)
 {
     this.bloodBanksService = bloodBanksService;
     this.userManager       = userManager;
     this.hospitalsService  = hospitalsService;
 }
Example #2
0
 public DashboardController(
     IUsersService usersService,
     IDonorsService donorsService,
     IHospitalsService hospitalsService)
 {
     this.usersService     = usersService;
     this.donorsService    = donorsService;
     this.hospitalsService = hospitalsService;
 }
 public HospitalsController(
     IHospitalsService hospitals,
     IDoctorsService doctors,
     IUsersService users,
     IDepartmentsService departments)
 {
     this.hospitals = hospitals;
     this.doctors = doctors;
     this.users = users;
     this.departments = departments;
 }
Example #4
0
 public HospitalsController(
     IHospitalsService hospitals,
     IDoctorsService doctors,
     IUsersService users,
     IDepartmentsService departments)
 {
     this.hospitals   = hospitals;
     this.doctors     = doctors;
     this.users       = users;
     this.departments = departments;
 }
Example #5
0
 public HospitalsController(
     IHospitalsService hospitalsService,
     UserManager <ApplicationUser> userManager,
     IRecipientsService recipientsService,
     IBloodBanksService bloodBanksService,
     IUsersService usersService)
 {
     this.hospitalsService  = hospitalsService;
     this.userManager       = userManager;
     this.recipientsService = recipientsService;
     this.bloodBanksService = bloodBanksService;
     this.usersService      = usersService;
 }
 public HospitalsController(IHospitalsService service, ICacheService cacheService)
 {
     this.hospitalsService = service;
     this.cacheService     = cacheService;
 }
Example #7
0
 public AdminHomeController(IHospitalsService hospitals)
 {
     this.hospitals = hospitals;
 }
 public DepartmentsController(IDepartmentsService departments, IHospitalsService hospitals, ICacheService cache)
 {
     this.departmentsService = departments;
     this.hospitalsService   = hospitals;
     this.cache = cache;
 }
 public HospitalsController(IHospitalsService service, ICacheService cacheService)
 {
     this.hospitalsService = service;
     this.cacheService = cacheService;
 }
 public AdminHomeController(IHospitalsService hospitals)
 {
     this.hospitals = hospitals;
 }
 public DepartmentsController(IDepartmentsService departments, IHospitalsService hospitals, ICacheService cache)
 {
     this.departmentsService = departments;
     this.hospitalsService = hospitals;
     this.cache = cache;
 }