This commit is contained in:
2021-03-26 00:26:52 +01:00
commit 7ea63e50a3
6 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace Domain
{
public interface IAdapterResolver
{
T Resolve<T>();
}
}