예제 #1
0
 public AuthController(IAuthrepository repo, IConfiguration config)
 {
     _repo   = repo;
     _config = config;
 }
예제 #2
0
 public AuthController(IAuthrepository repo, IConfiguration config, IMapper mapper)
 {
     _repo   = repo;
     _config = config;
     _mapper = mapper;
 }
예제 #3
0
 public AuthController(IAuthrepository repo, IConfiguration configuration, IMapper mapper)
 {
     _mapper        = mapper;
     _configuration = configuration;
     _repo          = repo;
 }
예제 #4
0
 public AuthController(IAuthrepository auth, IMapper mapper, IConfiguration config)
 {
     _auth   = auth;
     _mapper = mapper;
     _config = config;
 }