Interface IGLAccountName
The system entity for gl accounts names, which hold the IGLClassificationName category to use for a IGLAccount
See https://web.lemonedge.com/help/gl-accounts-with-classifications-view/ 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.GLAccountName, "dbo.LT_GLAccountNames", "GLAccountName", IsStandingDataEntity = true)]
[DefaultEntityIcon(ImageType.GLAccountType)]
public interface IGLAccountName : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
GLAccountID
[Key] Links to IGLAccount. The gl account that is being given a category for use in reporting/consolidation
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.GLAccount, "ID", SingleJoinType.One, "GLAccountName", "GLAccount", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = true, InheritPermissions = true)]
Guid GLAccountID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
GLClassificationID
[Key] Links to IGLClassification. The classification this gl account is being classified with
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.GLClassification, "ID", SingleJoinType.One, "GLAccountName", "GLClassification", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = true)]
Guid GLClassificationID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
GLClassificationNameID
[Key] Links to IGLClassificationName. The classification name for this gl account and classification
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.GLClassificationName, "ID", SingleJoinType.One, "GLAccountName", "GLClassificationName", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = true)]
Guid GLClassificationNameID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |