public SalePersonService(BootShopContext context, ShopService shopService) { _context = context; _shopService = shopService; }
public ProductCategoryService(BootShopContext context) { _context = context; }
public ProductService(BootShopContext context, ShopService shopService, ProductCategoryService productCategoryService) { _context = context; _shopService = shopService; _productCategoryService = productCategoryService; }
public ProductSaleService(BootShopContext context, SalePersonService salePersonService) { _context = context; _salePersonService = salePersonService; }
public ShopService(BootShopContext context) { _context = context; }