Exemplo n.º 1
0
 public ProductModel Delete(int id)
 {
     return(_repo.Delete <ProductModel>("usp_ProductDelete", new { ProductId = id }));
 }
Exemplo n.º 2
0
 public PriceModel Delete(int id)
 {
     return(_repo.Delete <PriceModel>("usp_PriceDelete", new { PriceId = id }));
 }