示例#1
0
 public BasicAuthenticationHandler(
     IOptionsMonitor <AuthenticationSchemeOptions> options,
     ILoggerFactory logger,
     UrlEncoder encoder,
     ISystemClock clock,
     ESMDBContext context
     )
     : base(options, logger, encoder, clock)
 {
     _context = context;
 }
示例#2
0
 public EsmsController(ESMDBContext context)
 {
     _context = context;
 }
 public DriversController(ESMDBContext context)
 {
     _context = context;
 }
示例#4
0
 public DepotsController(ESMDBContext context)
 {
     _context = context;
 }
示例#5
0
 public UsersController(ESMDBContext context, IOptions <JWTSettings> jwtsettings)
 {
     _context     = context;
     _jwtsettings = jwtsettings.Value;
 }