Interface IChartOfAccount
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Accounting
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.ChartOfAccount, "dbo.LT_ChartOfAccounts", "ChartOfAccount", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/settings/financial-services-transactions/coas/intro.html")]
[DefaultEntityIcon(ImageType.ChartOfAccounts)]
public interface IChartOfAccount : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier, IHasVersion
Properties
Description
A user friendly description of this Ledger
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of this chart of account.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique user friendly name of this chart of account
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this chart of account.")]
[Unique]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |