Ejemplo n.º 1
0
 public ChaptersController(DCLAB6LAB6LAB5PMDFContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public BooksController(DCLAB6LAB6LAB5PMDFContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public UsersController(DCLAB6LAB6LAB5PMDFContext context, IOptions <JWTSettings> jwtsettings)
 {
     _context     = context;
     _jwtSettings = jwtsettings.Value;
     _security    = new Security(_jwtSettings.SecretKey);
 }