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,10 @@
namespace Yavsc.Abstract.Workflow
{
public class TaskManager : ITaskRunnerProvider
{
public ITaskRunner FindRunner(string runnerName)
{
throw new System.NotImplementedException();
}
}
}