Example #1
0
 public bool UpdateProductDetails(long productId, string productName, decimal quantity, decimal buyingPrice,
                                  decimal retailPrice, decimal wholesalePrice, decimal creditPrice, int gstPercentage)
 {
     return(accessDB.UpdateProductDetails(productId, productName, quantity, buyingPrice, retailPrice, wholesalePrice, creditPrice, gstPercentage));
 }
Example #2
0
 public bool UpdateProductDetails(int productId, decimal productPrice, int quantityAvailable)
 {
     return(accessDB.UpdateProductDetails(productId, productPrice, quantityAvailable));
 }