cleanup
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace Hyperbar;
|
||||
|
||||
public interface IProvider<TParameter, TService>
|
||||
{
|
||||
TService? Get(TParameter value);
|
||||
}
|
||||
|
||||
public interface IProvider<TService>
|
||||
{
|
||||
TService? Get();
|
||||
}
|
||||
Reference in New Issue
Block a user