public ComplaintsModel(MSSCoreDbContext context,
                        IAuthorizationService authorizationService,
                        UserManager <MSSWebUser> userManager,
                        RoleManager <IdentityRole> roleManager,
                        MSSWebAuthContext authContext) : base(context,
                                                              authorizationService,
                                                              userManager,
                                                              roleManager,
                                                              authContext)
 {
 }
Exemple #2
0
 public DI_BasePageModel(
     MSSCoreDbContext context,
     IAuthorizationService authorizationService,
     UserManager <MSSWebUser> userManager,
     RoleManager <IdentityRole> roleManager,
     MSSWebAuthContext authContext) : base()
 {
     Context              = context;
     UserManager          = userManager;
     RoleManager          = roleManager;
     AuthorizationService = authorizationService;
     AuthContext          = authContext;
 }