Interface IGLPostingPathSplit
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.GlPostingPathSplit, "dbo.LT_GLPostingPathSplits", "GLPostingPathSplit", IsStandingDataEntity = false)]
[DefaultEntityIcon(ImageType.TransactionGL)]
public interface IGLPostingPathSplit : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
AllocationPathID
[Key] Links to IAllocationPath. The parent allocation path this belongs to
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityKeyProperty]
[EntityRelationship(EntityID.AllocationPath, "ID", SingleJoinType.One, "Allocation Path", "Path used to create PathSplit", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
[RequiredNoDefaultIDValidation]
Guid AllocationPathID { get; set; }
Property Value
GLPostingID
[Key] Links to IGLPosting. Gl posting used to create path splits
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.GLPosting, "ID", SingleJoinType.One, "GL Posting For PathSplit", "PathSplit By GL Posting", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false)]
[RequiredNoDefaultIDValidation]
[EntityKeyProperty]
[EntityDescription("The GL Posting used for path split id.")]
Guid GLPostingID { get; set; }
Property Value
PathSplitId
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityDescription("Path split id for path and posting")]
Guid? PathSplitId { get; set; }
Property Value
Extension Methods