1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class RoleForm : Entity, IRemotable, IPersistent, IManyToMany<Role, DigitalForm>, ILicense<CoreLicense>, IManyToMany<DigitalForm, Role>
- {
- public RoleLink Role { get; set; }
- public DigitalFormLink Form { get; set; }
- protected override void Init()
- {
- Role = new RoleLink();
- Form = new DigitalFormLink();
- base.Init();
- }
- }
- }
|