Class Bank
Represents a bank entity.
Inherited Members
Namespace: Innovt.Domain.Banks
Assembly: Innovt.Domain.dll
Syntax
public class Bank : ValueObject
Properties
| Edit this page View SourceAccountDigit
Gets or sets the account digit associated with the account number.
Declaration
public string AccountDigit { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
AccountNumber
Gets or sets the account number associated with the bank.
Declaration
public string AccountNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
AccountType
Gets or sets the account type (e.g., Checking, Savings).
Declaration
public AccountType AccountType { get; set; }
Property Value
| Type | Description |
|---|---|
| AccountType |
Code
Gets or sets the code of the bank.
Declaration
public string Code { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Gets or sets the name of the bank.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RoutingNumber
Gets or sets the routing number of the bank.
Declaration
public string RoutingNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| string |