Example #1
0
        private static void PrintInform(Bank <Account> bank)
        {
            Console.Write("ID Account: ");
            int id = Convert.ToInt32(Console.ReadLine());

            bank.InForm(id);
        }