public OrdersController(AuthenticationShopContext context)
 {
     _context = context;
 }
Exemple #2
0
 public UserService(IOptions <AppSettings> appSettings, AuthenticationShopContext context, IHttpContextAccessor httpContextAccessor)
 {
     _appSettings         = appSettings.Value;
     _context             = context;
     _httpContextAccessor = httpContextAccessor;
 }
 public ProductsController(AuthenticationShopContext context)
 {
     _context = context;
 }