C# 클래스 BudgetAnalyser.Engine.Statement.NamedTransaction

A simple type to represent the transaction type classification provided by the bank for a transaction. The type code is simply represented as a string.
상속: TransactionType
파일 보기 프로젝트 열기: Benrnz/BudgetAnalyser 1 사용 예제들

공개 메소드들

메소드 설명
GetHashCode ( ) : int

Returns a hash code for this instance.

NamedTransaction ( string name, bool isDebit = false ) : System

Initializes a new instance of the NamedTransaction class.

메소드 상세

GetHashCode() 공개 메소드

Returns a hash code for this instance.
public GetHashCode ( ) : int
리턴 int

NamedTransaction() 공개 메소드

Initializes a new instance of the NamedTransaction class.
public NamedTransaction ( string name, bool isDebit = false ) : System
name string The name.
isDebit bool A boolean value to indicate if this transaction type represents a debit. If true, its a debit, otherwise credit, credit is the default value.
리턴 System