Beispiel #1
0
 public ApplicationUserController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, IOptions <ApplicationSettings> applicationSettings, AgileTeamsContext context)
 {
     _userManager         = userManager;
     _signInManager       = signInManager;
     _applicationSettings = applicationSettings.Value;
     _context             = context;
 }
Beispiel #2
0
 public ProjectController(AgileTeamsContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Beispiel #3
0
 public UserAccountController(UserManager <ApplicationUser> userManager, AgileTeamsContext context)
 {
     _userManager = userManager;
     _context     = context;
 }
Beispiel #4
0
 public AdministrationController(UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager, AgileTeamsContext context)
 {
     _userManager = userManager;
     _roleManager = roleManager;
     _context     = context;
 }