public AuthController(IAuthrepository repo, IConfiguration config) { _repo = repo; _config = config; }
public AuthController(IAuthrepository repo, IConfiguration config, IMapper mapper) { _repo = repo; _config = config; _mapper = mapper; }
public AuthController(IAuthrepository repo, IConfiguration configuration, IMapper mapper) { _mapper = mapper; _configuration = configuration; _repo = repo; }
public AuthController(IAuthrepository auth, IMapper mapper, IConfiguration config) { _auth = auth; _mapper = mapper; _config = config; }