Search Results for

    Show / Hide Table of Contents

    Interface IContactInfo

    The system entity for a Contact Info, always a child of a IObjectEntity (by extending object entity IsTypeExtender)

    See https://web.lemonedge.com/help/contact-info-view/ 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()
    Namespace: LemonEdge.API.Entities
    Assembly: API.dll
    Syntax
    [EntityDefinition(EntityID.ContactInfo, "dbo.LT_ContactInfo", "ContactInfo", IsStandingDataEntity = false)]
    [DefaultEntityIcon(ImageType.ContactInfo)]
    public interface IContactInfo : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    Address

    A multiline address for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)2500, true)]
    string Address { get; set; }
    Property Value
    Type Description
    System.String

    DirectLine

    A direct line number for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)20, true)]
    string DirectLine { get; set; }
    Property Value
    Type Description
    System.String

    Email

    An email address for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)500, true)]
    string Email { get; set; }
    Property Value
    Type Description
    System.String

    Fax

    A fax number for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)20, true)]
    string Fax { get; set; }
    Property Value
    Type Description
    System.String

    Mobile

    A mobile number for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)20, true)]
    string Mobile { get; set; }
    Property Value
    Type Description
    System.String

    Notes

    Multiline notes for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, true)]
    string Notes { get; set; }
    Property Value
    Type Description
    System.String

    OwningEntityID

    [Key] Links to IObjectEntity. The parent object entity this record holds contact information for

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.ObjectEntity, "ID", SingleJoinType.One, "IObjectEntity", "Owning Entity", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true, IsTypeExtender = true)]
    [EntityDescription("The owning entity this has contact information for.")]
    Guid OwningEntityID { get; set; }
    Property Value
    Type Description
    System.Guid

    Twitter

    A twitter handle for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)500, true)]
    string Twitter { get; set; }
    Property Value
    Type Description
    System.String

    Website

    A website url for the OwningEntityID

    Declaration
    [EntityProperty(SQLType.NVarChar, (short)500, true)]
    string Website { get; set; }
    Property Value
    Type Description
    System.String

    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

    IObjectEntity
    In This Article
    Back to top © LemonTree Software Ltd. All rights reserved.