EmployeeQualificationTemplateLink.cs 273 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 EmployeeQualificationTemplateLink : EntityLink<EmployeeQualificationTemplate>
  8. {
  9. public override Guid ID { get; set; }
  10. }
  11. }