PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/StoragesContracts/IBackUpInfo.cs

9 lines
223 B
C#
Raw Permalink Normal View History

2024-05-22 14:38:56 +04:00
namespace ConfectioneryContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}