Exemplo n.º 1
0
        public MainPage()
        {
            InitializeComponent();

            Bank standardbank = new Bank("Standard Bank", 4324, "Kenilworth");

            myNewCustomer = new Customer("7766445424", "10 me at home", "Bob", "The Builder");
            standardbank.AddCustomer(myNewCustomer);
            account = myNewCustomer.ApplyForBankAccount();
        }