PIbd-21_Bakalskaya_E.D._Sus.../SushiBarContracts/StoragesContracts/IBackUpInfo.cs

9 lines
218 B
C#

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