示例#1
0
 public ProductModel Add(ProductModel model)
 {
     return(_repo.Add <ProductModel>("usp_ProductAdd", new {
         model.BarCode,
         model.ItemName
     }));
 }
示例#2
0
 public PriceModel Add(PriceModel model)
 {
     return(_repo.Add <PriceModel>("usp_PriceAdd", model));
 }