Search Results for

    Show / Hide Table of Contents

    Interface ITransactionType

    The system entity for a transaction type, which is a grouping category for ITransactionTypeValue

    See https://help.lemonedge.com/help/settings/financial-services-transactions/transaction-types/intro.html for more information

    Inherited Members
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.GetLabel(String)
    IBaseEntity.SetLabel(String, String)
    IBaseEntity.SetSilentLabel(String, String)
    System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
    System.ComponentModel.INotifyPropertyChanged.PropertyChanged
    System.ComponentModel.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
    Assembly: API.dll
    Syntax
    [EntityDefinition(EntityID.TransactionType, "dbo.LT_TransactionTypes", "TransactionType", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/settings/financial-services-transactions/transaction-types/intro.html")]
    [DefaultEntityIcon(ImageType.TransactionValueType)]
    [EntityLinkToAnyParentRelationshipModifier(EntityID.SQLWrapper, "OwnerEntityID", "ID", ExcludeFromRelationship = true)]
    public interface ITransactionType : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier

    Properties

    Description

    A user friendly description of this Transaction Type

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

    Name

    [Key] The unique friendly name of the Transaction Type

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)500, false)]
    [EntityDescription("The unique name of this transaction type for values.")]
    [Required]
    string Name { get; set; }
    Property Value
    Type Description
    System.String

    Type

    The type of transaction values. Used to ensure transaction codes only operate against a certain type of transaction values.

    Declaration
    [EntityProperty(SQLType.SmallInt, false)]
    [EntityDescription("The transaction type this value type belong to.")]
    TransactionType Type { get; set; }
    Property Value
    Type Description
    TransactionType

    Extension Methods

    MiscExtensions.SetIfNotEqual<T, P>(T, Expression<Func<T, P>>, P)
    ReflectionExtensions.ClearEventInvocations(Object, String)
    StringExtensions.ToCSVFormatString(Object, Type)
    SQLExtensions.ToSQLValue(Object, Boolean)

    See Also

    ITransaction
    ITransactionCode
    ITransactionTypeValue
    In This Article
    Back to top © LemonEdge Technology. All rights reserved.