PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaContracts/StoragesContracts/IBackUpInfo.cs
2023-05-05 00:09:30 +04:00

10 lines
219 B
C#

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