EmployeeQualificationDocument.cs 274 B

123456789
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Qualification))]
  5. public class EmployeeQualificationDocument : EntityDocument<EmployeeQualificationLink>, IManyToMany<EmployeeQualification, Document>, ILicense<HumanResourcesLicense>
  6. {
  7. }
  8. }