8 lines
177 B
C#
8 lines
177 B
C#
namespace Toolkit.Foundation
|
|
{
|
|
public interface IServiceCreator<T>
|
|
{
|
|
object Create(Func<Type, object[], object> creator, params object[] parameters);
|
|
}
|
|
}
|