using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantContracts.StoragesContracts
{
///
/// Интерфейс для получения данных из хранилища
///
public interface IBackUpInfo
{
///
/// Получить список объектов
///
///
///
List? GetList() where T : class, new();
///
/// Получить тип
///
///
///
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}