public BasicAuthenticationHandle(IOptionsMonitor <AuthenticationSchemeOptions> options,
                                  ILoggerFactory logger,
                                  UrlEncoder encoder,
                                  ISystemClock clock,
                                  CategoryDbContext context) : base(options, logger, encoder, clock)
 {
     _context = context;
 }
예제 #2
0
 public AccountsController(CategoryDbContext context)
 {
     _context = context;
 }
예제 #3
0
 public CategoryRepository(CategoryDbContext db) : base(db)
 {
     _db = db;
 }
예제 #4
0
 public CategoryController(CategoryDbContext context)
 {
     _context = context;
 }
 public ProductController(CategoryDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public CategoryRepository(CategoryDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public ProductRepository(CategoryDbContext db) : base(db)
 {
 }
예제 #8
0
 public ItemsController(CategoryDbContext context)
 {
     _context = context;
 }
예제 #9
0
 public CategoryController(ILogger <CategoryController> logger, CategoryDbContext context)
 {
     _logger  = logger;
     _context = context;
 }
 public GenericRepository(CategoryDbContext db)
 {
     _db = db;
 }
예제 #11
0
 public CategoriesService(CategoryDbContext db)
 {
     _db = db;
 }