| 12345678910111213141516 | using InABox.Core;using System;using System.Collections.Generic;using System.Text;namespace Comal.Classes{    public class DataEntryTagEmployee : Entity, IRemotable, IPersistent, IManyToMany<DataEntryTag, Employee>, IDataEntryTagDistributionEmployee, ILicense<DataEntryLicense>    {        [EntityRelationship(DeleteAction.Cascade)]        public DataEntryTagLink Tag { get; set; }        [EntityRelationship(DeleteAction.Cascade)]        public EmployeeLink Employee { get; set; }    }}
 |