Files
Toolkit2/Toolkit.Foundation/Services/ServiceCreator.cs
T
2022-12-05 17:47:16 +00:00

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);
}
}
}