ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryListImplement/BackUpInfo.cs
2024-06-02 22:46:22 +04:00

23 lines
482 B
C#

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