示例#1
0
        internal static void CloseAccount(Budget <Account> budget)
        {
            Console.WriteLine("Enter account number to close (id):");
            int id = Convert.ToInt32(Console.ReadLine());

            budget.CloseAccount(id);
        }