EmployeeQualificationTemplate.cs 287 B

1234567891011121314
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public class EmployeeQualificationTemplate : Entity, IRemotable, IPersistent, ILicense<HumanResourcesLicense>
  8. {
  9. public string Code { get; set; }
  10. }
  11. }