namespace Toolkit.Foundation; public interface IFactory { TService? Create(TParameter value); } public interface IFactory { TService? Create(); }