public DI_BasePageModel(
     PlayingForKeepersDbContext context,
     IAuthorizationService authorizationService,
     UserManager <ApplicationUser> userManager,
     RoleManager <IdentityRole> roleManager,
     IHttpClientFactory clientFactory
     ) : base()
 {
     Context = context;
     AuthorizationService = authorizationService;
     UserManager          = userManager;
     RoleManager          = roleManager;
     ClientFactory        = clientFactory;
 }
Esempio n. 2
0
 public AddRoleModel(PlayingForKeepersDbContext context, IAuthorizationService authorizationService, UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager, IHttpClientFactory clientFactory)
     : base(context, authorizationService, userManager, roleManager, clientFactory)
 {
 }