Beispiel #1
0
 /// <summary>
 /// add an action to the bag
 /// </summary>
 public void AddAction(BaseActionService actionService, object actionData)
 {
     UiActions.Add(new ActionDef {
         ActionData = actionData, ActionService = actionService
     });
 }
Beispiel #2
0
 /// <summary>
 /// constructor
 /// </summary>
 public ActionRequestHandler(BaseActionService service, string name, string path, string credentials)
     : base(name, nameof(T), path, credentials)
 {
     _service = service;
 }