Beispiel #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()));
 }
Beispiel #2
0
 public AccountController(ApplicationUserManager userManager, IRedService redService)
 {
     UserManager = userManager;
     RedService = redService;
 }
Beispiel #3
0
 public AccountController(IRedService redService)
 {
     RedService = redService;
 }
Beispiel #4
0
 public RedController(IRedService service)
 {
     Service = service;
 }
Beispiel #5
0
 public LostController(ILostService lostService, IRedService redService)
 {
     LostService = lostService;
     RedService = redService;
 }