Search Results for

    Show / Hide Table of Contents

    Interface IGLClassification

    The system entity for gl classifications, which hold the IGLClassificationName category to use for a IGLAccount

    See https://help.lemonedge.com/help/settings/financial-services-gl/gl-classifications/intro.html for more information

    Inherited Members
    IBaseEntity.GetLabel(string)
    IBaseEntity.SetLabel(string, string)
    IBaseEntity.SetSilentLabel(string, string)
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.AlgorithmStepID
    IBaseEntity.SafeID
    IEquatable<IBaseEntity>.Equals(IBaseEntity)
    INotifyPropertyChanged.PropertyChanged
    INotifyPropertyChanging.PropertyChanging
    ICloneableAsync.Clone(object)
    ICloneableAsync.CopyFromSource(object)
    ICanTrackProperties.HasTrackedPropertyChanged(string)
    ICanTrackProperties.OriginalTrackedPropertyValue(string)
    ICanTrackProperties.OriginalTrackedPropertyValue<T>(string)
    ICanTrackProperties.ClearTrackedOriginalValues()
    ICanTrackProperties.GetAllOriginalTrackedPropertyValues()
    ISetCopier.GetCopyInfo(IEntityUpdater)
    Namespace: LemonEdge.API.Entities.FinancialServices.Accounting
    Assembly: LemonEdge.API.Entities.FinancialServices.dll
    Syntax
    [EntityDefinition(EntityID.GLClassification, "dbo.LT_GLClassifications", "GLClassification", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/settings/financial-services-gl/gl-classifications/intro.html")]
    [DefaultEntityIcon(ImageType.GLAccountType)]
    public interface IGLClassification : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier

    Properties

    Description

    A user friendly description of this classification.

    Declaration
    [EntityProperty(SQLType.NVarChar, 2000, true)]
    [EntityDescription("A user friendly description of this classification.")]
    string Description { get; set; }
    Property Value
    Type Description
    string

    MandatoryRequirements

    Indicates if new gl accounts or transaction type values must be associated with this classification in order for them to be valid

    Declaration
    [EntityProperty(SQLType.SmallInt, false, "0")]
    [EntityDescription("Indicates if new gl accounts or transaction type values must be associated with this classification in order for them to be valid")]
    MandatoryClassificationRequirements MandatoryRequirements { get; set; }
    Property Value
    Type Description
    MandatoryClassificationRequirements

    Name

    [Key] The unique user friendly name for this GL Classification

    Declaration
    [EntityProperty(SQLType.NVarChar, 500, false)]
    [EntityKeyProperty]
    [EntityDescription("The unique name of this classification.")]
    [Unique]
    [Required]
    string Name { get; set; }
    Property Value
    Type Description
    string

    Sequence

    The sequence this vlue is to be show in

    Declaration
    [EntityProperty(SQLType.SmallInt, false)]
    [EntitySequence(1)]
    [EntityDescription("The sequence this classification is to be show in")]
    short Sequence { get; set; }
    Property Value
    Type Description
    short

    Extension Methods

    LinqExtensions.AsArray<T>(T)
    LinqExtensions.ToArrayOfOne<T>(T)
    LinqExtensions.ToListOfOne<T>(T)
    MiscExtensions.SetIfNotEqual<T, TP>(T, Expression<Func<T, TP>>, TP)
    WeakReferenceExtensions.WeakReference(object)
    SQLExtensions.ToSQLValue(object, bool)
    ReflectionExtensions.ClearEventInvocations(object, string)
    StringExtensions.ToCSVFormatString(object, Type)

    See Also

    IGLClassificationName
    IGLAccount
    IGLAccountName
    In this article
    Back to top © LemonEdge Technologies. All rights reserved.