SupplierContact.cs 474 B

12345678910111213141516
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Contact))]
  5. public class SupplierContact : Entity, IRemotable, IPersistent, IManyToMany<Supplier, Contact>, ILicense<CoreLicense>
  6. {
  7. [EntityRelationship(DeleteAction.Cascade)]
  8. public SupplierLink Supplier { get; set; }
  9. [EntityRelationship(DeleteAction.Cascade)]
  10. public ContactLink Contact { get; set; }
  11. public ContactTypeLink Type { get; set; }
  12. }
  13. }