public interface MenuItemIntf { int getId(); String getDescription(); float getPrice(); float getCost(); int getType(); int getCount(); int changeCount(int changeBy); }