PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/StoragesContracts/IBackUpInfo.cs
2023-05-14 07:44:14 +04:00

16 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}