| 1234567891011121314151617181920 | using InABox.Core;namespace Comal.Classes{    [UserTracking(typeof(Employee))]    public class RoleActivity :         Entity,         IRemotable,         IPersistent,         IManyToMany<Role, Activity>,         IManyToMany<Activity, Role>,         ILicense<CoreLicense>    {        [EntityRelationship(DeleteAction.Cascade)]        public RoleLink Role { get; set; }        [EntityRelationship(DeleteAction.Cascade)]        public ActivityLink Activity { get; set; }    }}
 |