public AuthController(IAuthRepositroy repo, IConfiguration config)
 {
     _repo   = repo;
     _config = config;
 }
Example #2
0
 public AuthController(IAuthRepositroy repo, IConfiguration config, IMapper mapper)
 {
     _repo   = repo;
     _Config = config;
     _mapper = mapper;
 }