ContoContabile class
Accounting account.
public class ContoContabile : BaseEntity
Public Members
| name | description |
|---|---|
| ContoContabile() | The default constructor. |
| BancaId { get; set; } | Unique Banca id. |
| Conto { get; } | Account number (e.g., "100.20"). Up to 5 levels are supported. The value is parsed from Raw. |
| Descrizione { get; set; } | Description. |
| Raw { get; set; } | Account number, in raw format. Up to five levels are supported, each expressed by up to five characters aligned to the right and padded with blank characters, eg: " 100 20" (ten characters total) expresses "100.20". |
| Sezione { get; set; } | Balance section slot. |
| Sottoconto { get; set; } | Last quintet of the account number (sub-account). For "100.20", the value would be "20". |
| Tipo { get; set; } | Account kind. |
See Also
- class BaseEntity
- namespace Amica