Interface ITransactionPathSplit
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.TransactionPathSplit, "dbo.LT_TransactionPathSplits", "TransactionPathSplit", IsStandingDataEntity = false)]
[DefaultEntityIcon(ImageType.Transaction)]
public interface ITransactionPathSplit : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
AllocationPathID
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)]
[EntityDescription("The allocation paths used for path split id")]
[RequiredNoDefaultIDValidation]
Guid AllocationPathID { get; set; }
Property Value
PathSplitId
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityDescription("Path split id for path and transaction")]
Guid? PathSplitId { get; set; }
Property Value
TransactionID
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityKeyProperty]
[EntityRelationship(EntityID.Transaction, "ID", SingleJoinType.One, "Transaction For PathSplit", "PathSplit By Transaction", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
[EntityDescription("The transaction used for path split id")]
[RequiredNoDefaultIDValidation]
Guid TransactionID { get; set; }
Property Value
Extension Methods