private void OnItemClicked(AutomationButtonWidgetViewModel obj)
 {
     _applicationState.NotifyEvent(RuleEventNames.AutomationCommandExecuted,
         new
             {
                 Ticket = Ticket.Empty,
                 AutomationCommandName = obj.Settings.CommandName,
                 CommandValue = obj.Settings.Value
             });
 }
 private void OnItemClicked(AutomationButtonWidgetViewModel obj)
 {
     _applicationState.NotifyEvent(RuleEventNames.AutomationCommandExecuted,
                                   new
     {
         Ticket = Ticket.Empty,
         AutomationCommandName = obj.Settings.CommandName,
         obj.Settings.Value
     });
 }
 private void OnItemClicked(AutomationButtonWidgetViewModel obj)
 {
     _automationService.NotifyEvent(RuleEventNames.AutomationCommandExecuted, new { AutomationCommandName = obj.Settings.CommandName });
 }
Esempio n. 4
0
 private void OnItemClicked(AutomationButtonWidgetViewModel obj)
 {
     _automationService.NotifyEvent(RuleEventNames.AutomationCommandExecuted, new { AutomationCommandName = obj.Settings.CommandName });
 }