Ejemplo n.º 1
0
 public UserRepository(gendeiContext context, IAuthRepository <User> authRepository)
 {
     _gendeiContext  = context;
     _authRepository = authRepository;
 }
Ejemplo n.º 2
0
 public CityRepository(gendeiContext context)
 {
     _gendeiContext = context;
 }
Ejemplo n.º 3
0
 public AuthRepository(gendeiContext context, IConfiguration config)
 {
     _context = context;
     _config  = config;
 }