PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaContracts/StoragesContracts/IBackUpInfo.cs

10 lines
219 B
C#
Raw Normal View History

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