Interface ICoverageItem
The system entity for coverage items
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Products
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.CoverageItem, "dbo.LT_CoverageItems", "CoverageItem", IsStandingDataEntity = false, CustomToString = true)]
[DefaultEntityIcon(ImageType.CoverageType)]
public interface ICoverageItem : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
CoverageTypeID
[Key] Links to ICoverageType. The type this coverage is under.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.CoverageType, "ID", SingleJoinType.One, "Coverage Type", "Coverage", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityKeyProperty]
[EntityDescription("The type this coverage is under.")]
Guid CoverageTypeID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Description
A detailed description of the coverage
Declaration
[EntityProperty(SQLType.NVarChar, true)]
[EntityDescription("A detailed description of the coverage")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
InstrumentID
[Key] Links to IInstrument. The instrument this coverage is linked to.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.Instrument, "ID", SingleJoinType.One, "Instrument", "Coverage", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
[EntityKeyProperty]
[EntityDescription("The instrument this coverage is linked to.")]
Guid InstrumentID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Name
The brief details of the coverage
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityDescription("The brief details of the coverage.")]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |