BankSystem.MortgageAccount.WithdrawMoney C# (CSharp) Method

WithdrawMoney() public method

public WithdrawMoney ( decimal money ) : void
money decimal
return void
        public override void WithdrawMoney(decimal money)
        {
            Console.WriteLine("Your account is Mortagage.\nYou can't withdraw money only deposit!");
        }