public void DisplayCurrentStatus() { double money = wallet.coins.Sum(s => s.Value); UserInterface.DisplayCustomerDetails(backpack.cans.Count, money); }
//methods public int SelectSoda() { int choice = UserInterface.AskForSodaChoice(); return(choice); }