using Contracts.BindingModels; using Contracts.SearchModels; using Contracts.StorageContracts; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DatabaseImplement.Implements { public class SellStorage : ISellStorage { public SellBindingModel? Delete(SellSearchModel model) { return new(); } public SellBindingModel? GetElement(SellSearchModel model) { throw new NotImplementedException(); } public IEnumerable GetList(SellSearchModel? model) { throw new NotImplementedException(); } public SellBindingModel? Insert(SellBindingModel model) { throw new NotImplementedException(); } public SellBindingModel? Update(SellBindingModel model) { throw new NotImplementedException(); } } }