C# Class BankSystem.LoanAccount

Inheritance: Account, IDepositable
Show file Open project: Y-LyN-10/Software-University-Courses Class Usage Examples

Public Methods

Method Description
DepositMoney ( decimal money ) : void
InterestAmount ( int months ) : decimal
LoanAccount ( ) : System
LoanAccount ( CustromerType customer, decimal balance, decimal interestRate ) : System
WithdrawMoney ( decimal money ) : void

Method Details

DepositMoney() public method

public DepositMoney ( decimal money ) : void
money decimal
return void

InterestAmount() public method

public InterestAmount ( int months ) : decimal
months int
return decimal

LoanAccount() public method

public LoanAccount ( ) : System
return System

LoanAccount() public method

public LoanAccount ( CustromerType customer, decimal balance, decimal interestRate ) : System
customer CustromerType
balance decimal
interestRate decimal
return System

WithdrawMoney() public method

public WithdrawMoney ( decimal money ) : void
money decimal
return void