EmployeeDocument.cs 220 B

123456789
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Employee))]
  5. public class EmployeeDocument : EntityDocument<EmployeeLink>, IManyToMany<Employee, Document>, ILicense<CoreLicense>
  6. {
  7. }
  8. }