public HospitalController(UserManager <ApplicationUser> userManager, MedicalSystemDbContext context, RoleManager <IdentityRole> roleManager)
 {
     _userManager = userManager;
     _context     = context;
     _roleManager = roleManager;
 }
Exemplo n.º 2
0
 public DiseasesController(MedicalSystemDbContext context)
 {
     _context = context;
 }
 public MedicinesController(MedicalSystemDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public ApplicationUserController(UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager, MedicalSystemDbContext context)
 {
     this._userManager = userManager;
     this._roleManager = roleManager;
     _context          = context;
 }
 public MedicalHistoriesController(MedicalSystemDbContext context)
 {
     _context = context;
 }
 public OperationsController(MedicalSystemDbContext context)
 {
     _context = context;
 }
 public SensitivitiesController(MedicalSystemDbContext context)
 {
     _context = context;
 }
 public HospitalConfirmationsController(MedicalSystemDbContext context)
 {
     _context = context;
 }
 public TestsController(MedicalSystemDbContext context)
 {
     _context = context;
 }