C# Class BudgetAnalyser.Engine.BankAccount.ChequeAccount

Represents a Chequing or transaction bank account. This is used as the main bank account.
Inheritance: Account
Show file Open project: Benrnz/BudgetAnalyser

Private Properties

Property Type Description

Public Methods

Method Description
ChequeAccount ( string name )

Initializes a new instance of the ChequeAccount class.

Clone ( string name ) : Account

Clones this instance and give the new clone the specified name.

Method Details

ChequeAccount() public method

Initializes a new instance of the ChequeAccount class.
public ChequeAccount ( string name )
name string The name.

Clone() public method

Clones this instance and give the new clone the specified name.
public Clone ( string name ) : Account
name string
return Account