Пример #1
0
 /// <summary>
 /// Returns the inventory quantity for a particular product at a store
 /// </summary>
 public int InventoryAmount(int store_id, int product_id)
 {
     return(_inventoryDAO.GetInventoryAmount(store_id, product_id));
 }