PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/StorageContracts/IBackUpInfo.cs
2024-05-12 11:23:15 +04:00

15 lines
339 B
C#

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