Beispiel #1
0
 public LocationsController(IdentitySampleContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public UserManagementController(IdentitySampleContext identitySampleContext, UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager)
 {
     _identitySampleContext = identitySampleContext;
     _userManager           = userManager;
     _roleManager           = roleManager;
 }
Beispiel #3
0
 public ReservationsController(IdentitySampleContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }