public TurnosController(EfcLinqJwtIntroContext context)
 {
     _context = context;
 }
Exemple #2
0
 public CursosController(EfcLinqJwtIntroContext context)
 {
     _context = context;
 }
Exemple #3
0
 public PersonasController(EfcLinqJwtIntroContext context)
 {
     _context = context;
 }
 public RolesController(EfcLinqJwtIntroContext context)
 {
     _context = context;
 }
Exemple #5
0
 public AuthController(EfcLinqJwtIntroContext context, IOptions <AuthSettings> authSettings)
 {
     _context      = context;
     _authSettings = authSettings.Value;
 }