11 lines
190 B
C#
11 lines
190 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IFactory<TParameter, TService>
|
|
{
|
|
TService? Create(TParameter value);
|
|
}
|
|
|
|
public interface IFactory<TService>
|
|
{
|
|
TService? Create();
|
|
} |