using ConfectioneryContracts.BindingModels; using ConfectioneryContracts.SearchModels; using ConfectioneryContracts.ViewModels; namespace ConfectioneryContracts.StoragesContracts { public interface IPastryStorage { List GetFullList(); List GetFilteredList(PastrySearchModel model); PastryViewModel? GetElement(PastrySearchModel model); PastryViewModel? Insert(PastryBindingModel model); PastryViewModel? Update(PastryBindingModel model); PastryViewModel? Delete(PastryBindingModel model); } }