소스 검색

Initialised licenses for event classes

Kenric Nugteren 8 달 전
부모
커밋
b1453a5429
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      prs.classes/Entities/Events/Event.cs
  2. 1 1
      prs.classes/Entities/Events/EventSubscriber.cs

+ 1 - 1
prs.classes/Entities/Events/Event.cs

@@ -40,7 +40,7 @@ namespace Comal.Classes
         }
     }
 
-    public class EventLink : EntityLink<Event>, ILicense<CoreLicense>
+    public class EventLink : EntityLink<Event>
     {
         [CodePopupEditor(typeof(Event))]
         public override Guid ID { get; set; }

+ 1 - 1
prs.classes/Entities/Events/EventSubscriber.cs

@@ -5,7 +5,7 @@ using System.Text;
 
 namespace Comal.Classes
 {
-    public class EventSubscriber : Entity, IRemotable, IPersistent, IManyToMany<Event, Employee>
+    public class EventSubscriber : Entity, IRemotable, IPersistent, IManyToMany<Event, Employee>, ILicense<CoreLicense>
     {
         public EventLink Event { get; set; }