PIbd-22-Stroev-V.M.-Plumbin.../PlumbingRepair/PlumbingRepairListImplement/Implements/BackUpInfo.cs

23 lines
547 B
C#
Raw Normal View History

2024-05-21 20:02:14 +04:00
using PlumbingRepairContracts.StoragesContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlumbingRepairListImplement.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();
}
}
}