Exemplo n.º 1
0
 public AuthController(IAtuthRepository repo, IConfiguration config)
 {
     _config = config;
     _repo   = repo;
 }
Exemplo n.º 2
0
 public AuthController(IAtuthRepository repo, IConfiguration config, IMapper mapper)
 {
     _config = config;
     _repo   = repo;
     _mapper = mapper;
 }