Class QIFAccountRecord
- Namespace
- Tudormobile.QIFLibrary
- Assembly
- Tudormobile.QIFLibrary.dll
Represents a QIF Account record.
public class QIFAccountRecord : QIFRecord
- Inheritance
-
QIFAccountRecord
- Inherited Members
Constructors
QIFAccountRecord(string, string, string, decimal, decimal)
Creates and initializes a new QIF Account record.
public QIFAccountRecord(string name, string description, string accountType, decimal balance = 0, decimal creditLimit = 0)
Parameters
namestringAccount name.
descriptionstringAccount description.
accountTypestringAccount type.
balancedecimalAccount balance.
creditLimitdecimalAccount credit limit.
Properties
AccountType
Account type.
public string AccountType { get; }
Property Value
Balance
Account balance.
public decimal Balance { get; }
Property Value
CreditLimit
Account credit limit.
public decimal CreditLimit { get; }
Property Value
Description
Account description.
public string Description { get; }
Property Value
Name
Account name.
public string Name { get; }