BankSystem.LoanAccount.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 Loan.\nYou can't withdraw money only deposit!");
        }