RoleForm.cs 532 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using InABox.Core;
  5. namespace Comal.Classes
  6. {
  7. public class RoleForm : Entity, IRemotable, IPersistent, IManyToMany<Role, DigitalForm>, ILicense<CoreLicense>, IManyToMany<DigitalForm, Role>
  8. {
  9. public RoleLink Role { get; set; }
  10. public DigitalFormLink Form { get; set; }
  11. protected override void Init()
  12. {
  13. Role = new RoleLink();
  14. Form = new DigitalFormLink();
  15. base.Init();
  16. }
  17. }
  18. }