public Task <IEnumerable <WorkflowInstance> > GetWorkflowInstances(IEnumerable <string> ids, CancellationToken _ = default) => _innerService.GetWorkflowInstances(ids);
Ejemplo n.º 2
0
 public Task <IEnumerable <WorkflowInstance> > GetWorkflowInstances(IEnumerable <string> ids) => _innerService.GetWorkflowInstances(ids);
 public Task <IEnumerable <WorkflowInstance> > GetWorkflowInstances(WorkflowStatus?status, string type, DateTime?createdFrom, DateTime?createdTo, int skip, int take) => _innerService.GetWorkflowInstances(status, type, createdFrom, createdTo, skip, take);