using SushiBarContracts.BindingModels; using SushiBarContracts.SearchModels; using SushiBarContracts.ViewModels; namespace SushiBarContracts.StoragesContracts { public interface IIngredientStorage { List GetFullList(); List GetFilteredList(IngredientSearchModel model); IngredientViewModel? GetElement(IngredientSearchModel model); IngredientViewModel? Insert(IngredientBindingModel model); IngredientViewModel? Update(IngredientBindingModel model); IngredientViewModel? Delete(IngredientBindingModel model); } }