10 lines
233 B
C#
10 lines
233 B
C#
|
8 years ago
|
namespace Yavsc.Abstract.Workflow
|
||
|
|
{
|
||
|
|
public class TaskManager : ITaskRunnerProvider
|
||
|
|
{
|
||
|
|
public ITaskRunner FindRunner(string runnerName)
|
||
|
|
{
|
||
|
|
throw new System.NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|