PIbd22_NikiforovaMV_Automob.../AutomobilePlantListImplements/Implements/BackUpInfo.cs

23 lines
486 B
C#
Raw Permalink Normal View History

2024-06-22 22:32:20 +04:00
using AutomobilePlantContracts.StorageContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantListImplements.Implements
{
public class BackUpInfo : IBackUpInfo
{
public List<T>? GetList<T>() where T : class, new()
{
throw new NotImplementedException();
}
public Type? GetTypeByModelInterface(string modelInterfaceName)
{
throw new NotImplementedException();
}
}
}