thinking to automation

This commit is contained in:
2018-04-13 23:45:29 +02:00
parent 818af21e3d
commit 8846d5b1ce
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Yavsc.Abstract.Workflow
{
public interface ITaskRunner
{
Task Run(string [] args);
}
}

View File

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

View File

@ -0,0 +1,10 @@
namespace Yavsc.Abstract.Workflow
{
public class TaskManager : ITaskRunnerProvider
{
public ITaskRunner FindRunner(string runnerName)
{
throw new System.NotImplementedException();
}
}
}