Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantListImplement/Implements/BackUpInfo.cs
2024-05-16 20:23:36 +04:00

23 lines
559 B
C#

using PrecastConcretePlantContracts.StoragesContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantListImplement.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();
}
}
}