Beispiel #1
0
 // method to update a product
 public void UpdateProduct(int id, string name, decimal price, short quantity)
 {
     _adpProducts.Update(name, price, quantity, id);
 }