Esempio n. 1
0
        //

        public void AccessModifierMain()
        {
            var Customer       = new Customer();
            var GoldCustomer   = new GoldCustomer();
            var RateCalculator = new RateCalculator();

            TextAreaBody  = "";
            TextAreaBody  = "Application Start!";
            TextAreaBody += _NewLine;

            TextAreaBody  = Customer.Promote(TextAreaBody);
            TextAreaBody += _NewLine;
            TextAreaBody  = GoldCustomer.OfferVouchar(TextAreaBody);
            TextAreaBody += _NewLine;
            TextAreaBody  = RateCalculator.Calculate(Customer, TextAreaBody);
        }