DataEntryTagEmployee.cs 506 B

12345678910111213141516
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public class DataEntryTagEmployee : Entity, IRemotable, IPersistent, IManyToMany<DataEntryTag, Employee>, IDataEntryTagDistributionEmployee, ILicense<DataEntryLicense>
  8. {
  9. [EntityRelationship(DeleteAction.Cascade)]
  10. public DataEntryTagLink Tag { get; set; }
  11. [EntityRelationship(DeleteAction.Cascade)]
  12. public EmployeeLink Employee { get; set; }
  13. }
  14. }