PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopListImplement/BackUpInfo.cs
2024-05-19 19:09:33 +04:00

23 lines
476 B
C#

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