11 lines
278 B
C#
11 lines
278 B
C#
namespace Toolkit.Foundation
|
|
{
|
|
public class ServiceCreator<T> : IServiceCreator<T>
|
|
{
|
|
public virtual object Create(Func<Type, object[], object> creator, params object[] parameters)
|
|
{
|
|
return creator(typeof(T), parameters);
|
|
}
|
|
}
|
|
}
|