public ProductController(IProductsBL _repo) { this.repo = _repo; }
public CartController() { this._cartItemsbl = new CartItemBL(); this._productsbl = new ProductsBL(); }
public HomeController() { this._categoriesbl = new CategoriesBL(); this._productsbl = new ProductsBL(); }
public PurchaseController(IPurchasesBL _repo, IProductsBL _prorepo, IPurcheaseDetailsBL _prodrepo) { this.repo = _repo; this.prorepo = _prorepo; this.prodrepo = _prodrepo; }
public SaleController(ISalesBL _repo, IProductsBL _prorepo) { this.repo = _repo; this.prorepo = _prorepo; }
public ProductsController(IProductsBL productBl) { _productBL = productBl; }