Interface ILedger
The system entity for a ledger, which gl postings and transactions can be entered against
See https://web.lemonedge.com/help/ledgers/ for more information
Inherited Members
System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
System.ComponentModel.INotifyPropertyChanging.PropertyChanging
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
[EntityDefinition(EntityID.Ledger, "dbo.LT_Ledgers", "Ledger", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "ledgers")]
[DefaultEntityIcon(ImageType.Ledger)]
public interface ILedger : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier, IHasVersion
Properties
Description
A user friendly description of this Ledger
Declaration
[EntityProperty(SQLType.NVarChar, (short)2000, true)]
[EntityDescription("A user friendly description of this ledger.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
[Key] The unique user friendly name of this Ledger
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this Ledger.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |