PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarContracts/StoragesContracts/IBackUpInfo.cs
2023-05-02 18:16:03 +04:00

9 lines
218 B
C#

namespace SushiBarContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}