예제 #1
0
 public BasicAuthenticationHandler(IOptionsMonitor <AuthenticationSchemeOptions> options,
                                   ILoggerFactory Logger,
                                   UrlEncoder encoder,
                                   ISystemClock clock, YDContext context) : base(options, Logger, encoder, clock)
 {
     _context = context;
 }
예제 #2
0
 public ProductCategories(YDContext context)
 {
     _context = context;
 }
예제 #3
0
 public RolesController(YDContext context)
 {
     _context = context;
 }
예제 #4
0
 public Products(YDContext context)
 {
     _context = context;
 }
예제 #5
0
 public UsersController(YDContext context, IWebHostEnvironment environment)
 {
     _environment = environment;
     _context     = context;
 }
예제 #6
0
 public YDsController(YDContext context)
 {
     _context = context;
 }
예제 #7
0
 public AuthController(YDContext context, IOptions <JWTSettings> jwtsettings)
 {
     _context     = context;
     _jwtsettings = jwtsettings.Value;
 }