Exemple #1
0
        static void Main(string[] args)
        {
            Account customerAccount = new CustomerAccount();
              Account childAccount = new BabyAccount();

              Console.WriteLine(customerAccount.RudeLetterString());
              Console.WriteLine(childAccount.RudeLetterString());
              Console.ReadLine();
        }