public AuthController(IAuthRespository repo, IConfiguration config, IMapper mapper, UserManager <User> userManager, SignInManager <User> signInManager)
 {
     _UserManager   = userManager;
     _signInManager = signInManager;
     _repo          = repo;
     _config        = config;
     _mapper        = mapper;
 }
Exemple #2
0
 public AuthController(IAuthRespository respository, IConfiguration config, IMapper mapper)
 {
     this.respository = respository;
     this.config      = config;
     this.mapper      = mapper;
 }
Exemple #3
0
 public AuthController(IAuthRespository repo, IConfiguration config)
 {
     _repo   = repo;
     _config = config;
 }
Exemple #4
0
 public AuthController(IAuthRespository repo, IConfiguration config, IMapper mapper)
 {
     _repo   = repo;
     _config = config;
     _mapper = mapper;
 }
 public AuthController(IAuthRespository Repo, IConfiguration config, IMapper mapper)
 {
     _config = config;
     _mapper = mapper;
     _Repo   = Repo;
 }