Interface IDomicile
The system entity for a Domicile
See https://help.lemonedge.com/help/financial-services-engine/entities/domiciles/intro.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.LegalEntity
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.Domicile, "dbo.LT_Domiciles", "Domicile", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/financial-services-engine/entities/domiciles/intro.html")]
[DefaultEntityIcon(ImageType.Domicile)]
public interface IDomicile : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this domicile
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of this domicile.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique user friendly Domicile name
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this domicile.")]
[Unique]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
ShortCode
The unique short code for this domicile
Declaration
[EntityProperty(SQLType.NVarChar, 25, true)]
[EntityDescription("The unique short code of this domicile.")]
[Unique(AllowNullOrEmpty = true)]
string ShortCode { get; set; }
Property Value
Type | Description |
---|---|
string |