Exemplo n.º 1
0
 public UsersController(IConfiguration _configuration, BaseDbContext _context, IAccountsServices _accountsServices, IEmailService _emailServices)
 {
     this._context          = _context;
     this._accountsServices = _accountsServices;
     this._emailServices    = _emailServices;
     this._configuration    = _configuration;
 }
Exemplo n.º 2
0
 public AccountsController(
     SignInManager <ApplicationUser> signInManager,
     IAccountsServices accountsServices)
 {
     _accountsServices = accountsServices;
     _signInManager    = signInManager;
 }
Exemplo n.º 3
0
 public AccountsController(
     SignInManager <OlympiaUser> signInManager,
     IAccountsServices accountsServices,
     IUsersService usersService)
 {
     this.signInManager    = signInManager;
     this.accountsServices = accountsServices;
     this.usersService     = usersService;
 }
Exemplo n.º 4
0
 public LoginController(IAccountsServices _accountsServices)
 {
     accountsServices = _accountsServices;
 }
Exemplo n.º 5
0
 public AccountsController(IAccountsServices _accountsServices)
 {
     accountsServices = _accountsServices;
 }
Exemplo n.º 6
0
 public AccountsController(IAccountsServices accountsServices)
 {
     _accountsServices = accountsServices;
 }