Ejemplo n.º 1
0
 public FeatureErrorHasOccurredHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 2
0
 public ConfigurationHasBeenUpdatedHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 3
0
 public ApplicationErrorHasOccurredHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 4
0
 public ApplicationHasBeenUpdatedHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
 public ConfigurationErrorHasOccurredHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 6
0
 public FeatureHasBeenUpdatedHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 7
0
 public FeatureOverrideHasBeenCreatedHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 8
0
 public ResourceErrorHasOccurredHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
 public ResourceHasBeenDeletedHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 10
0
 public ResourcesHaveBeenGeneratedHandler(INotifyClients notifyClients)
 {
     _notifyClients = notifyClients;
 }
Ejemplo n.º 11
0
 public ChatController(INotifyClients <ChatMessage> notifyService)
 {
     _notifyService = notifyService;
 }