Interface IReconciliation
Inherited Members
Namespace: LemonEdge.API.Entities.DataIntegration
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.Reconciliation, "dbo.LT_Reconciliations", "Reconciliation", LabelColumn = "Name", IsStandingDataEntity = true)]
[DefaultEntityIcon(ImageType.Equals)]
public interface IReconciliation : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this reconciliation
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of the use of this reconciliation.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The unique user friendly name for this Reconciliation
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this reconciliation.")]
[Unique]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
The type of reconciliation to perform
Declaration
[EntityProperty(SQLType.SmallInt, false)]
[EntityDescription("The type of reconciliation to perform.")]
ReconciliationType Type { get; set; }
Property Value
Type | Description |
---|---|
ReconciliationType |