Beispiel #1
0
 public CategoryService(TechShopDBContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public TransportService(TechShopDBContext context, IStorageService storageService)
 {
     _context        = context;
     _storageService = storageService;
 }
Beispiel #3
0
 public ContactService(TechShopDBContext context, IStorageService storageService)
 {
     _context        = context;
     _storageService = storageService;
 }
Beispiel #4
0
 public AdminService(TechShopDBContext context, IConfiguration config)
 {
     _context = context;
     _config  = config;
 }
Beispiel #5
0
 public CouponService(TechShopDBContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public BrandService(TechShopDBContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public PaymentMethodService(TechShopDBContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public OrderService(TechShopDBContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public CustomerService(TechShopDBContext context)
 {
     _context = context;
 }