Interface ILoanSchedule
The system entity for loan shcedule against instruments
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
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
EndingBalance
Declaration
[EntityProperty(SQLType.Decimal, 21, 3, false)]
decimal EndingBalance { get; set; }
Property Value
InstrumentID
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
Interest
Declaration
[EntityProperty(SQLType.Decimal, 21, 3, false)]
decimal Interest { get; set; }
Property Value
PIK
Declaration
[EntityProperty(SQLType.Decimal, 21, 3, false)]
decimal PIK { get; set; }
Property Value
Principle
Declaration
[EntityProperty(SQLType.Decimal, 21, 3, false)]
decimal Principle { get; set; }
Property Value
Repayment
Declaration
[EntityProperty(SQLType.Decimal, 21, 3, false)]
decimal Repayment { get; set; }
Property Value
UnderlyingRepayment
Declaration
[EntityProperty(SQLType.Decimal, 21, 3, false)]
decimal UnderlyingRepayment { get; set; }
Property Value
Extension Methods
See Also