Add foundation
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public interface IProvider<TParameter, TService>
|
||||
{
|
||||
TService? Get(TParameter value);
|
||||
}
|
||||
|
||||
public interface IProvider<TService>
|
||||
{
|
||||
TService? Get();
|
||||
}
|
||||
Reference in New Issue
Block a user