refactoring the haircut messaging

This commit is contained in:
Paul Schneider 2017-06-02 21:34:18 +02:00
commit 8ec60de3f3
12 changed files with 199 additions and 80 deletions

View file

@ -27,9 +27,10 @@ using Interfaces.Workflow;
public class RdvQueryEvent: RdvQueryProviderInfo, IEvent
{
public RdvQueryEvent()
public RdvQueryEvent(string subTopic)
{
Topic = "RdvQuery";
Topic = GetType().Name+"/"+subTopic;
}
public string Message
@ -44,7 +45,7 @@ public class RdvQueryEvent: RdvQueryProviderInfo, IEvent
public string Topic
{
get; set;
get; private set;
}
}