Interface ICompany
The system entity for a Comment, which inherits from the base type IObjectEntityBase
See https://web.lemonedge.com/help/companies/ for more information
Inherited Members
System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
System.ComponentModel.INotifyPropertyChanging.PropertyChanging
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
[EntityDefinition(EntityID.Company, "dbo.LT_Companies", "Company", LabelColumn = "Name", IsStandingDataEntity = false, HelpURL = "companies")]
[DefaultEntityIcon(ImageType.Company)]
[EntityColor("LightGreen")]
public interface ICompany : IInheritingObject, IObjectEntityBase, IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
DomicileID
Links to IDomicile. The domicile for the company
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityRelationship(EntityID.Domicile, "ID", SingleJoinType.ZeroToOne, "Company", "Domicile", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityDescription("The domicile for this company.")]
Guid? DomicileID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
IndustryID
Links to IIndustry. The industry for the company
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityRelationship(EntityID.Industry, "ID", SingleJoinType.ZeroToOne, "Company", "Industry", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityDescription("The industry for this company.")]
Guid? IndustryID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |