Search Results for

    Show / Hide Table of Contents

    Interface IBlendTransaction

    The system entity for a blended transaction, which creates a set of transactions according to rules configured in a IBlendTransaction

    See https://help.lemonedge.com/help/financial-services-engine/financial/blended-transactions/intro.html for more information

    Inherited Members
    IHeaderTransactionalEntity.Description
    IHeaderTransactionalEntity.TransactionDate
    ITransactionalEntity.Status
    ITransactionalEntity.CancelledID
    ITransactionalEntity.CorrectedByID
    ICanBeLocked.Locked
    IHasReference.Reference
    IHasSaveProcessingTask.GetShouldAutoGenerateTaskOnSave()
    IHasSaveProcessingTask.SetAutoGenerateOnSave(bool)
    IHasSaveProcessingTask.SavedTaskID
    IHasSaveProcessingTask.SavedTaskParam
    IHasSaveProcessingTask.PriorRunTaskParam
    IBaseEntity.GetLabel(string)
    IBaseEntity.SetLabel(string, string)
    IBaseEntity.SetSilentLabel(string, string)
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.AlgorithmStepID
    IBaseEntity.SafeID
    IEquatable<IBaseEntity>.Equals(IBaseEntity)
    INotifyPropertyChanged.PropertyChanged
    INotifyPropertyChanging.PropertyChanging
    ICloneableAsync.Clone(object)
    ICloneableAsync.CopyFromSource(object)
    ICanTrackProperties.HasTrackedPropertyChanged(string)
    ICanTrackProperties.OriginalTrackedPropertyValue(string)
    ICanTrackProperties.OriginalTrackedPropertyValue<T>(string)
    ICanTrackProperties.ClearTrackedOriginalValues()
    ICanTrackProperties.GetAllOriginalTrackedPropertyValues()
    Namespace: LemonEdge.API.Entities.FinancialServices.Transactions
    Assembly: LemonEdge.API.Entities.FinancialServices.dll
    Syntax
    [EntityDefinition(EntityID.BlendTransaction, "dbo.LT_BlendTransactions", "BlendTransaction", LabelColumn = "Reference", IsStandingDataEntity = true, HelpURL = "help/financial-services-engine/financial/blended-transactions/intro.html")]
    [DefaultEntityIcon(ImageType.BlendTransactions)]
    [EntityLinkToAnyParentRelationshipModifier(EntityID.Transaction, "ParentItemID", "ID", PartOfThisSet = true)]
    public interface IBlendTransaction : IHeaderTransactionalEntity, ITransactionalEntity, ICanBeLocked, IBaseEntityWithPermissions, IHasReference, IHasSaveProcessingTask, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    BlendingTransactionID

    Links to IBlendingTransaction. The Blending Transaction configuration settings to be used to process this Blended Transaction with. See here for more information

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.BlendingTran, "ID", SingleJoinType.One, "Blending Transaction", "Blend Transactions", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
    [RequiredNoDefaultIDValidation]
    [EntityDescription("The blending transaction algorithm to use when blending these transactions.")]
    Guid BlendingTransactionID { get; set; }
    Property Value
    Type Description
    Guid

    EndDate

    If the Blending Transaction configuration requires an End Date then one will be visible here.

    Any transaction filtering for Source/Target Transactions will only look between these Start/End Dates. (Again unless the dates are being repeated in which case it is run multiple times, once for each date set)

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, true, IsDate = true)]
    DateTimeOffset? EndDate { get; set; }
    Property Value
    Type Description
    DateTimeOffset?

    ExchangeRateCategoryID

    The exchange rate category to use when processing this blend transaction.

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, true)]
    [EntityRelationship(EntityID.ExchangeRateCategory, "ID", SingleJoinType.ZeroToOne, "Exchange Rate Category", "Blend Transactions", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
    [EntityDescription("The exchange rate category to use when processing this blend transaction.")]
    Guid? ExchangeRateCategoryID { get; set; }
    Property Value
    Type Description
    Guid?

    FinancialDate

    This is used for transaction matching when aggregating source and target transaction values. The Blended Transaction itself doesn't have a Financial Date as it isn't operating against an Entity

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, false, IsDate = true)]
    [Required]
    DateTimeOffset FinancialDate { get; set; }
    Property Value
    Type Description
    DateTimeOffset

    StartDate

    If the Blending Transaction configuration requires a Start Date then one will be visible here.

    Any transaction filtering for Source/Target Transactions will only look between these Start/End Dates. (Again unless the dates are being repeated in which case it is run multiple times, once for each date set)

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, true, IsDate = true)]
    DateTimeOffset? StartDate { get; set; }
    Property Value
    Type Description
    DateTimeOffset?

    Extension Methods

    LinqExtensions.AsArray<T>(T)
    LinqExtensions.ToArrayOfOne<T>(T)
    LinqExtensions.ToListOfOne<T>(T)
    MiscExtensions.SetIfNotEqual<T, TP>(T, Expression<Func<T, TP>>, TP)
    WeakReferenceExtensions.WeakReference(object)
    SQLExtensions.ToSQLValue(object, bool)
    ReflectionExtensions.ClearEventInvocations(object, string)
    StringExtensions.ToCSVFormatString(object, Type)

    See Also

    IBlendingTransaction
    IBlendTransactionInstrumentSet
    In this article
    Back to top © LemonEdge Technologies. All rights reserved.