예제 #1
0
파일: Solid.cs 프로젝트: war-man/Railway
        private void PreCondition()
        {
            Account acc = new MicroAccount();

            this.InitializeAccount(acc);

            Console.Read();
        }
예제 #2
0
파일: Solid.cs 프로젝트: war-man/Railway
        private void PostCondition(Account account)
        {
            Account acc = new MicroAccount();

            //get result without bonus
            this.CalculateInterest(acc);

            Console.Read();
        }