ISEbd-21_Agliullov.D.A._Con.../ConfectionaryListImplement/ShopStorage.cs
2023-02-05 15:56:29 +04:00

47 lines
1.2 KiB
C#

using ConfectioneryContracts.BindingModels;
using ConfectioneryContracts.SearchModels;
using ConfectioneryContracts.StoragesContract;
using ConfectioneryContracts.ViewModels;
namespace ConfectioneryListImplement
{
public class ShopStorage : IShopStorage
{
private readonly DataListSingleton _source;
public ShopStorage()
{
_source = DataListSingleton.GetInstance();
}
public ShopViewModel? Delete(ShopBindingModel model)
{
throw new NotImplementedException();
}
public ShopViewModel? GetElement(ShopSearchModel model)
{
throw new NotImplementedException();
}
public List<ShopViewModel> GetFilteredList(ShopSearchModel model)
{
throw new NotImplementedException();
}
public List<ShopViewModel> GetFullList()
{
throw new NotImplementedException();
}
public ShopViewModel? Insert(ShopBindingModel model)
{
throw new NotImplementedException();
}
public ShopViewModel? Update(ShopBindingModel model)
{
throw new NotImplementedException();
}
}
}