ISEbd-21_Zinovev_V.V._Furni.../FurnitureAssembly/FurnitureAssemblyContracts/StoragesContracts/IBackUpInfo.cs
2024-06-17 18:47:33 +04:00

15 lines
344 B
C#

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