using PizzeriaContracts.BindingModels; using PizzeriaContracts.SearchModels; using PizzeriaContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PizzeriaContracts.StoragesContracts { public interface IComponentStorage { List GetFullList(); List GetFilteredList(ComponentSearchModel model); ComponentViewModel? GetElement(ComponentSearchModel model); ComponentViewModel? Insert(ComponentBindingModel model); ComponentViewModel? Update(ComponentBindingModel model); ComponentViewModel? Delete(ComponentBindingModel model); } }