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