EmployeeQualificationTemplateItem.cs 573 B

12345678910111213141516171819202122
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public class EmployeeQualificationTemplateItem : Entity, IRemotable, IPersistent, ILicense<HumanResourcesLicense>
  8. {
  9. public EmployeeQualificationTemplateLink Template { get; set; }
  10. public QualificationLink Qualification { get; set; }
  11. public EmployeeQualificationTemplateItem()
  12. {
  13. Template = new EmployeeQualificationTemplateLink();
  14. Qualification = new QualificationLink();
  15. }
  16. }
  17. }