using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class ScanTagEmployee : Entity, IRemotable, IPersistent, IManyToMany, IScanTagDistributionEmployee, ILicense { [EntityRelationship(DeleteAction.Cascade)] public ScanTagLink Tag { get; set; } [EntityRelationship(DeleteAction.Cascade)] public EmployeeLink Employee { get; set; } protected override void Init() { base.Init(); Tag = new ScanTagLink(); Employee = new EmployeeLink(); } } }