10 lines
199 B
C#
10 lines
199 B
C#
namespace TheXamlGuy.TaskbarGroup.Core
|
|
{
|
|
public interface IServiceFactory
|
|
{
|
|
T Create<T>(params object[] parameters);
|
|
|
|
T Create<T>(Type type);
|
|
T Create<T>();
|
|
}
|
|
} |