Interface IGLRollup
The system entity for a gl rollup, which allows reporting across the whole gl for a given IEntitySet
See https://web.lemonedge.com/help/gl-rollups/ 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.GLRollup, "dbo.LT_GLRollups", "GLRollup", IsStandingDataEntity = false, LabelColumn = "Name", HelpURL = "gl-rollups")]
[DefaultEntityIcon(ImageType.Sigma)]
public interface IGLRollup : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this rollup.
Declaration
[EntityProperty(SQLType.NVarChar, (short)2000, true)]
[EntityDescription("A user friendly description of this rollup.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
GLClassificationID
Links to IGLClassification. The gl classification this report across the gl
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.GLClassification, "ID", SingleJoinType.One, "IGLRollup", "GL Rollups", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
Guid GLClassificationID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Name
[Key] The unique user friendly name of this GL Rollup
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this gl rollup.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |