using SushiBarContracts.BindingModels; using SushiBarContracts.SearchModels; using SushiBarContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SushiBarContracts.StoragesContracts { public interface IBuyerStorage { List GetFullList(); List GetFilteredList(BuyerSearchModel model); BuyerViewModel? GetElement(BuyerSearchModel model); BuyerViewModel? Insert(BuyerBindingModel model); BuyerViewModel? Update(BuyerBindingModel model); BuyerViewModel? Delete(BuyerBindingModel model); void ClearEntity(); } }