using PrecastConcretePlantContracts.BindingModels; using PrecastConcretePlantContracts.SearchModels; using PrecastConcretePlantContracts.StoragesContract; using PrecastConcretePlantContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PrecastConcretePlantFileImplement { public class ShopStorage : IShopStorage { 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(); } } }