Interface ILinkedInstrument
The system entity for linking instruments together
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Products
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.LinkedInstruments, "dbo.LT_LinkedInstruments", "LinkedInstrument", IsStandingDataEntity = false, CustomToString = true)]
[DefaultEntityIcon(ImageType.LinkedItems)]
public interface ILinkedInstrument : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
IncludeSourceTransactionsInTargetPeriodEndProcessing
Automatically include source transactions in target period end processing
Declaration
[EntityProperty(SQLType.Bit, false)]
[EntityDescription("Automatically include source transactions in target period end processing")]
bool IncludeSourceTransactionsInTargetPeriodEndProcessing { get; set; }
Property Value
Type | Description |
---|---|
bool |
Pct
The percentage to be allocated from the source instrument to the target instrument
Declaration
[EntityProperty(SQLType.Decimal, 31, 18, false)]
[EntityDescription("The percentage to be allocated from the source instrument to the target instrument")]
decimal Pct { get; set; }
Property Value
Type | Description |
---|---|
decimal |
SourceInstrumentID
The source instrument for this link
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.Instrument, "ID", SingleJoinType.One, "Source Instrument", "Linked Instruments Source", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
[EntityKeyProperty]
[EntityDescription("The source instrument for this link.")]
Guid SourceInstrumentID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
TargetInstrumentID
The target instrument for this link
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.Instrument, "ID", SingleJoinType.One, "Target Instrument", "Linked Instruments Target", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityKeyProperty]
[EntityDescription("The target instrument for this link.")]
Guid TargetInstrumentID { get; set; }
Property Value
Type | Description |
---|---|
Guid |