| 12345678910111213141516171819202122232425262728 | 
							- using System;
 
- using System.Linq.Expressions;
 
- using InABox.Core;
 
- namespace Comal.Classes
 
- {
 
-     [UserTracking(typeof(Qualification))]
 
-     public class RoleQualification : Entity, IRemotable, IPersistent, IManyToMany<Role, Qualification>, ILicense<HumanResourcesLicense>,
 
-         IExportable, IImportable
 
-     {
 
-         [EditorSequence(0)]
 
-         [EntityRelationship(DeleteAction.Cascade)]
 
-         public RoleLink Role { get; set; }
 
-         [EditorSequence(1)]
 
-         [EntityRelationship(DeleteAction.Cascade)]
 
-         public QualificationLink Qualification { get; set; }
 
-         
 
-         protected override void Init()
 
-         {
 
-             base.Init();
 
-             Role = new RoleLink();
 
-             Qualification = new QualificationLink();
 
-         }
 
-     }
 
-     
 
- }
 
 
  |