thinking to automation

This commit is contained in:
Paul Schneider 2018-04-13 23:45:29 +02:00
commit d4ae765bb5
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,8 @@
namespace Yavsc.Abstract.Workflow
{
public interface ITaskRunnerProvider
{
ITaskRunner FindRunner(string runnerName);
}
}