13 lines
251 B
C#
13 lines
251 B
C#
using System;
|
|
|
|
namespace Tapeti.Default
|
|
{
|
|
public class DefaultControllerFactory : IControllerFactory
|
|
{
|
|
public object CreateController(Type controllerType)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|