rename factories

This commit is contained in:
TheXamlGuy
2024-01-06 19:25:44 +00:00
parent d5cc92e6ba
commit 36c718c07e
4 changed files with 11 additions and 11 deletions
-6
View File
@@ -1,6 +0,0 @@
namespace Hyperbar;
public interface IViewModelFactory<TFrom, TTo>
{
TTo Create();
}
+6
View File
@@ -0,0 +1,6 @@
namespace Hyperbar;
public interface MappingFactory<TFrom, TTo>
{
TTo Create();
}