ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarListImplement/BackUpInfo.cs
2024-06-03 00:41:04 +04:00

22 lines
534 B
C#

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