Esempio n. 1
0
 public UserController(IUserService service, IRedService redService, RoleManager<IdentityRole> roleManager)
 {
     Service = service;
     RedService = redService;
     RoleManager = roleManager;
     UserManager = new UserManager<ApplicationUserEntity>(new UserStore<ApplicationUserEntity>(new SearchContext()));
 }
Esempio n. 2
0
 public AccountController(ApplicationUserManager userManager, IRedService redService)
 {
     UserManager = userManager;
     RedService = redService;
 }
Esempio n. 3
0
 public AccountController(IRedService redService)
 {
     RedService = redService;
 }
Esempio n. 4
0
 public RedController(IRedService service)
 {
     Service = service;
 }
Esempio n. 5
0
 public LostController(ILostService lostService, IRedService redService)
 {
     LostService = lostService;
     RedService = redService;
 }