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 GetFilteredList(ShopSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public ShopViewModel? Insert(ShopBindingModel model) { throw new NotImplementedException(); } public ShopViewModel? Update(ShopBindingModel model) { throw new NotImplementedException(); } } }