Interface ICompanyOwnership
The system entity for a COmpany Ownership link, part of a ICompany record
See https://help.lemonedge.com/help/financial-services-engine/entities/companies/ownership-view.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.LegalEntity
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.CompanyOwnership, "dbo.LT_CompanyOwnership", "CompanyOwnership", CustomToString = true)]
[DefaultEntityIcon(ImageType.CompanyOrg)]
public interface ICompanyOwnership : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
ChildCompanyID
[Key] Links to ICompany. The company that is a child company of this one within the organization structure. Vice-versa those companies have this one as a parent. Reporting can be used to visualize these relationships.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.ObjectEntity, "ID", SingleJoinType.One, "Child Entity", "Parent Entities", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityDescription("A child company of this parent company.")]
[EntityKeyProperty]
Guid ChildCompanyID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
ParentCompanyID
[Key] Links to ICompany. The parent company this item belongs to
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.ObjectEntity, "ID", SingleJoinType.One, "Parent Entity", "Child Entities", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
[EntityDescription("The parent company for this inter-company relationship.")]
[EntityKeyProperty]
Guid ParentCompanyID { get; set; }
Property Value
Type | Description |
---|---|
Guid |