| 123456789101112131415161718192021222324 | using InABox.Core;using System;using System.Collections.Generic;using System.Text;namespace Comal.Classes{    public class ScanTagEmployee : Entity, IRemotable, IPersistent, IManyToMany<ScanTag, Employee>, IScanTagDistributionEmployee, ILicense<DocumentScannerLicense>    {        [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();        }    }}
 |