This commit is contained in:
TheXamlGuy
2024-01-18 22:40:55 +00:00
parent 2fed876182
commit 19e83d5043
5 changed files with 26 additions and 34 deletions
-12
View File
@@ -10,15 +10,3 @@ public interface IFactory<TService>
{
TService? Create();
}
public interface IProvider<TParameter, TService>
{
TService? Get(TParameter value);
}
public interface IProvider<TService>
{
TService? Get();
}
+11
View File
@@ -0,0 +1,11 @@
namespace Hyperbar;
public interface IProvider<TParameter, TService>
{
TService? Get(TParameter value);
}
public interface IProvider<TService>
{
TService? Get();
}