Interface IPeriodEndTransformation
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Accounting
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.PeriodEndTransformation, "dbo.LT_PeriodEndTransformations", "PeriodEndTransformation", IsStandingDataEntity = false, LabelColumn = "Name")]
[DefaultEntityIcon(ImageType.FindAndReplace)]
public interface IPeriodEndTransformation : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Description
A user friendly description of this period end transformation
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of this period end transformation.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique user friendly name of this period end transformation
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this period end transformation.")]
[Unique]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Indicates which gl postings should be allocated dynamically during a period end - all, or only those specified in transformation
Declaration
[EntityProperty(SQLType.SmallInt, false, "0")]
[EntityDescription("Indicates which gl postings should be allocated dynamically during a period end - all, or only those specified in transformation")]
PeriodEndTransformationsType Type { get; set; }
Property Value
Type | Description |
---|---|
PeriodEndTransformationsType |
UnderlyingLookThroughType
Indicates which gl postings should be allocated dynamically from an underlying fund during a period end - all, or only those specified in transformation
Declaration
[EntityProperty(SQLType.SmallInt, false, "0")]
[EntityDescription("Indicates which gl postings should be allocated dynamically from an underlying fund during a period end - all, or only those specified in transformation")]
PeriodEndTransformationsType UnderlyingLookThroughType { get; set; }
Property Value
Type | Description |
---|---|
PeriodEndTransformationsType |