Search Results for

    Show / Hide Table of Contents

    Interface ILoanSchedule

    The system entity for loan shcedule against instruments

    Inherited Members
    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.Products
    Assembly: LemonEdge.API.Entities.FinancialServices.dll
    Syntax
    [EntityDefinition(EntityID.LoanSchedule, "dbo.LT_LoanSchedule", "LoanSchedule", IsStandingDataEntity = false)]
    [DefaultEntityIcon(ImageType.Schedule)]
    public interface ILoanSchedule : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    BeginningBalance

    Declaration
    [EntityProperty(SQLType.Decimal, 21, 3, false)]
    decimal BeginningBalance { get; set; }
    Property Value
    Type Description
    decimal

    EffectiveDate

    The effective date for this loan schedule

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, false, IsDate = true)]
    [RequiredNoDefaultIDValidation]
    [EntityKeyProperty]
    [EntityDescription("The effective date for this loan instrument schedule")]
    DateTimeOffset EffectiveDate { get; set; }
    Property Value
    Type Description
    DateTimeOffset

    EndingBalance

    Declaration
    [EntityProperty(SQLType.Decimal, 21, 3, false)]
    decimal EndingBalance { get; set; }
    Property Value
    Type Description
    decimal

    InstrumentID

    [Key] Links to IInstrument.

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.Instrument, "ID", SingleJoinType.One, "Instrument", "Loan Schedule", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
    [EntityKeyProperty]
    [EntityDescription("The instrument this loan schedule is linked to.")]
    Guid InstrumentID { get; set; }
    Property Value
    Type Description
    Guid

    Interest

    Declaration
    [EntityProperty(SQLType.Decimal, 21, 3, false)]
    decimal Interest { get; set; }
    Property Value
    Type Description
    decimal

    PIK

    Declaration
    [EntityProperty(SQLType.Decimal, 21, 3, false)]
    decimal PIK { get; set; }
    Property Value
    Type Description
    decimal

    Principle

    Declaration
    [EntityProperty(SQLType.Decimal, 21, 3, false)]
    decimal Principle { get; set; }
    Property Value
    Type Description
    decimal

    Repayment

    Declaration
    [EntityProperty(SQLType.Decimal, 21, 3, false)]
    decimal Repayment { get; set; }
    Property Value
    Type Description
    decimal

    UnderlyingRepayment

    Declaration
    [EntityProperty(SQLType.Decimal, 21, 3, false)]
    decimal UnderlyingRepayment { get; set; }
    Property Value
    Type Description
    decimal

    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

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