Exemplo n.º 1
0
 public ManageController(ApplicationUserManager userManager, ApplicationSignInManager signInManager)
 {
     UserManager         = userManager;
     SignInManager       = signInManager;
     _portalAdminService =
         new PortalAdminService(new PortalAdminRepository(new InrappAdminDbContext(), new InrappAdminIdentityDbContext()));
     _errorDecsriber = new CustomIdentityResultErrorDescriber();
 }
Exemplo n.º 2
0
 public AccountController()
 {
     _portalAdminService =
         new PortalAdminService(new PortalAdminRepository(new InrappAdminDbContext(), new InrappAdminIdentityDbContext()));
     _errorDecsriber = new CustomIdentityResultErrorDescriber();
 }
Exemplo n.º 3
0
 public AdminController()
 {
     _portalAdminService =
         new PortalAdminService(new PortalAdminRepository(new InrappAdminDbContext(), new InrappAdminIdentityDbContext()));
 }
Exemplo n.º 4
0
 public AdminController(ApplicationUserManager userManager)
 {
     UserManager         = userManager;
     _portalAdminService =
         new PortalAdminService(new PortalAdminRepository(new InrappAdminDbContext(), new InrappAdminIdentityDbContext()));
 }