public OrderRepository(PRC391_ToyShopContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #2
0
 public CategoryController(PRC391_ToyShopContext context)
 {
     _context = context;
 }
예제 #3
0
 public BasicAuthenticationHandler(IOptionsMonitor <AuthenticationSchemeOptions> options, ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock, PRC391_ToyShopContext context) : base(options, logger, encoder, clock)
 {
     _context = context;
 }
 public AccountController(PRC391_ToyShopContext context, IAccountService accountService)
 {
     _context        = context;
     _accountService = accountService;
 }