public productMasterController(BusinessServices.Master1.Product.IproductService product) { _productService = product; }
public SearchRepository(IproductService iproductService) { this._iproductService = iproductService; }
public ProductController() { _db = new ProductService(); }
public WinesController() { _db = new ProductService(); }
public ProductController(DataContext dc, IproductService productService) { _entities = dc; _service = productService; }