JobEmployeeQualification.cs 440 B

1234567891011121314
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Qualification))]
  5. public class JobEmployeeQualification : Entity, IRemotable, IPersistent, ILicense<HumanResourcesLicense>
  6. {
  7. [EntityRelationship(DeleteAction.Cascade)]
  8. public JobQualificationLink Required { get; set; }
  9. [EntityRelationship(DeleteAction.Cascade)]
  10. public EmployeeQualificationLink Available { get; set; }
  11. }
  12. }