Exemple #1
0
 public HomeController(VacationReadyContext context, UserManager <UsersModel> userManager, SignInManager <UsersModel> signInManager, RoleManager <IdentityRole <int> > roleManager)
 {
     _context           = context;
     this.userManager   = userManager;
     this.signInManager = signInManager;
     this.roleManager   = roleManager;
 }
 public RequestsController(VacationReadyContext context)
 {
     _context = context;
 }
Exemple #3
0
 public ProjectsController(VacationReadyContext context)
 {
     _context = context;
 }
Exemple #4
0
 public TeamsController(VacationReadyContext context)
 {
     _context = context;
 }
 public UsersController(VacationReadyContext context)
 {
     _context = context;
 }