Add Cross-section repositort tests

This commit is contained in:
Evgeny Redikultsev
2024-12-07 16:52:18 +05:00
parent 59b989ca89
commit ccaf9a927c
10 changed files with 588 additions and 107 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IGetUpdateStrategy<T> where T : ISaveable
{
IUpdateStrategy<T> GetStrategy();
}
}