Exemple #1
0
 public bool Delete(string id)
 {
     return(_res.Delete(id));
 }
Exemple #2
0
 public void Delete(Product product)
 {
     _productRespository.Delete(product);
 }
Exemple #3
0
 public void DeleteProduct(Expression <Func <Product, bool> > where)
 {
     _iRespository.Delete(where);
 }