public double getQuantity(string itemName) { clothesStore = new ClothesStore(); clothesStoreDB = new ClothesStoreDB(); clothesStore.setName(itemName); clothesStoreDB.selectQuantity(clothesStore); return(clothesStore.getQuantity()); }
public bool checkItemQuantity(string itemName, double quantity) { clothesStore = new ClothesStore(); clothesStoreDB = new ClothesStoreDB(); clothesStore.setName(itemName); clothesStoreDB.selectQuantity(clothesStore); if (quantity > clothesStore.getQuantity()) { return(false); } else { return(true); } }