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