public SalePersonService(BootShopContext context, ShopService shopService)
 {
     _context     = context;
     _shopService = shopService;
 }
Example #2
0
 public ProductCategoryService(BootShopContext context)
 {
     _context = context;
 }
Example #3
0
 public ProductService(BootShopContext context, ShopService shopService, ProductCategoryService productCategoryService)
 {
     _context                = context;
     _shopService            = shopService;
     _productCategoryService = productCategoryService;
 }
 public ProductSaleService(BootShopContext context, SalePersonService salePersonService)
 {
     _context           = context;
     _salePersonService = salePersonService;
 }
Example #5
0
 public ShopService(BootShopContext context)
 {
     _context = context;
 }