123456789101112131415161718192021222324 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class DataEntryTagRole : Entity, IRemotable, IPersistent, IManyToMany<DataEntryTag, Role>, ILicense<DataEntryLicense>
- {
- [EntityRelationship(DeleteAction.Cascade)]
- public DataEntryTagLink Tag { get; set; }
- [EntityRelationship(DeleteAction.Cascade)]
- public RoleLink Role { get; set; }
- protected override void Init()
- {
- base.Init();
- Tag = new DataEntryTagLink();
- Role = new RoleLink();
- }
- }
- }
|