1234567891011121314 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class EmployeeQualificationTemplate : Entity, IRemotable, IPersistent, ILicense<HumanResourcesLicense>
- {
- public string Code { get; set; }
- }
- }
|