public List <Item> getlist() { return(ItemDL.getlist()); }
public void additem(string name, string category, string price) { ItemDL.additem(name, category, price); }
public void delete(Int32 index) { ItemDL.delete(index); }
public void deleteorder(Int32 index) { ItemDL.deleteorder(index); }
public void cal() { ItemDL.cal(); }
public int gettotalprice() { return(ItemDL.gettotalprice()); }
public int getprice() { return(ItemDL.getprice()); }
public void Tprice(int x) { ItemDL.Tprice(x); }
public List <Item> getorder() { return(ItemDL.getorder()); }
//deals_end public void orderitem(string name, string category, string price, string quantity) { ItemDL.orderitem(name, category, price, quantity); }