Ejemplo n.º 1
0
 public AuthStudentController(IAuthStudentRepository repository, IConfiguration config, DataContext context)
 {
     _config     = config;
     _repository = repository;
     _context    = context;
 }
Ejemplo n.º 2
0
 public AuthController(IAuthStudentRepository studentRepo, IConfiguration config, DataContext context)
 {
     _config      = config;
     _studentRepo = studentRepo;
     _context     = context;
 }