PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarContracts/StoragesContracts/IBackUpInfo.cs

9 lines
218 B
C#
Raw Normal View History

2023-05-02 18:16:03 +04:00
namespace SushiBarContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}