12345678910111213141516171819202122 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class EmployeeQualificationTemplateItem : Entity, IRemotable, IPersistent, ILicense<HumanResourcesLicense>
- {
- public EmployeeQualificationTemplateLink Template { get; set; }
- public QualificationLink Qualification { get; set; }
- public EmployeeQualificationTemplateItem()
- {
- Template = new EmployeeQualificationTemplateLink();
- Qualification = new QualificationLink();
- }
- }
- }
|