Exemplo n.º 1
0
 public bool AddNewProductPrice(T_ProductbasicPrice price, List <T_CraftsPrice> newcplist)
 {
     try
     {
         ph = new ProductHelper();
         int pbid = ph.AddProductPrice(price);
         return(ph.AddNewCraftPricelst(newcplist, pbid));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }