コード例 #1
0
 public ChaptersController(DCLAB6LAB6LAB5PMDFContext context)
 {
     _context = context;
 }
コード例 #2
0
 public BooksController(DCLAB6LAB6LAB5PMDFContext context)
 {
     _context = context;
 }
コード例 #3
0
 public UsersController(DCLAB6LAB6LAB5PMDFContext context, IOptions <JWTSettings> jwtsettings)
 {
     _context     = context;
     _jwtSettings = jwtsettings.Value;
     _security    = new Security(_jwtSettings.SecretKey);
 }