Пример #1
0
 public AttainFilesController(BMEDDBContext db,
                              ApplicationDbContext context,
                              IRepository <AppUserModel, int> userRepo,
                              IHostingEnvironment hostingEnvironment)
 {
     _db                 = db;
     _context            = context;
     _userRepo           = userRepo;
     _hostingEnvironment = hostingEnvironment;
 }
Пример #2
0
 public FORMSosbDtlDetailsViewComponent(BMEDDBContext db,
                                        ApplicationDbContext context,
                                        IRepository <AppUserModel, int> userRepo,
                                        CustomUserManager customUserManager)
 {
     _db         = db;
     _context    = context;
     _userRepo   = userRepo;
     userManager = customUserManager;
 }
 public FORMSOsbFlowListViewComponent(BMEDDBContext db,
                                      ApplicationDbContext context,
                                      IRepository <AppUserModel, int> userRepo,
                                      CustomUserManager customUserManager,
                                      CustomRoleManager customRoleManager)
 {
     _db         = db;
     _context    = context;
     _userRepo   = userRepo;
     userManager = customUserManager;
     roleManager = customRoleManager;
 }
 public OutsideBmedFlowsController(BMEDDBContext db,
                                   ApplicationDbContext context,
                                   IRepository <AppUserModel, int> userRepo,
                                   IHostingEnvironment hostingEnvironment,
                                   CustomUserManager customUserManager,
                                   CustomRoleManager customRoleManager)
 {
     _db                 = db;
     _context            = context;
     _userRepo           = userRepo;
     _hostingEnvironment = hostingEnvironment;
     userManager         = customUserManager;
     roleManager         = customRoleManager;
 }
Пример #5
0
 public HomeController(ApplicationDbContext context,
                       BMEDDBContext db,
                       ApplicationDbContext BMEDcontext,
                       IRepository <RepairModel, string> repairRepo,
                       IRepository <AppUserModel, int> userRepo,
                       CustomUserManager customUserManager)
 {
     _context     = context;
     _db          = db;
     _BMEDcontext = BMEDcontext;
     _repRepo     = repairRepo;
     _userRepo    = userRepo;
     userManager  = customUserManager;
 }
 public UseUnitFindController(ApplicationDbContext context,
                              BMEDDBContext db,
                              IRepository <AppUserModel, int> userRepo,
                              IHostingEnvironment hostingEnvironment,
                              CustomUserManager customUserManager,
                              CustomRoleManager customRoleManager
                              )
 {
     _context            = context;
     _db                 = db;
     _userRepo           = userRepo;
     _hostingEnvironment = hostingEnvironment;
     userManager         = customUserManager;
     roleManager         = customRoleManager;
 }
Пример #7
0
 public FORMSAttainFilePListViewComponent(BMEDDBContext context)
 {
     _context = context;
 }