public AuthManager(IUserService userService, ITokenHelper tokenHelper, IUserOperationService userOperationService, ICustomerService customerService)
 {
     _customerService      = customerService;
     _userService          = userService;
     _tokenHelper          = tokenHelper;
     _userOperationService = userOperationService;
 }
 public UserController(UserManager <User> userManager,
                       SignInManager <User> signInManager,
                       IUserOperationService userOperationService)
 {
     this._userManager          = userManager;
     this._signInManager        = signInManager;
     this._userOperationService = userOperationService;
 }
Beispiel #3
0
 public MessageController(
     IMessageService messageOperationService,
     IUserOperationService userOperationService,
     UserManager <User> userManager,
     SignInManager <User> signInManager)
 {
     this._messageOperationService = messageOperationService;
     this._userManager             = userManager;
     this._signInManager           = signInManager;
     this._userOperationService    = userOperationService;
 }
Beispiel #4
0
 public TaskBoardController(
     IMessageService messageOperationService,
     IUserOperationService userOperationService,
     UserManager <User> userManager,
     SignInManager <User> signInManager)
 {
     this._messageOperationService = messageOperationService;
     this._userManager             = userManager;
     this._signInManager           = signInManager;
     this._userOperationService    = userOperationService;
     PAGE_SIZE = 10;
 }
 public AccountController(
     UserManager <User> userManager,
     SignInManager <User> signInManager,
     RoleManager <IdentityRole> roleManager,
     TokenService tokenService,
     IUserOperationService userOperationService)
 {
     this._userManager          = userManager;
     this._signInManager        = signInManager;
     this._roleManager          = roleManager;
     this._tokenService         = tokenService;
     this._userOperationService = userOperationService;
 }
Beispiel #6
0
 public UserOperationsController(IUserOperationService uOperationService)
 {
     _uOperationService = uOperationService;
 }