using BeautySalonContracts.BindingModels; using BeautySalonContracts.SearchModels; using BeautySalonContracts.ViewModels; namespace BeautySalonContracts.StoragesContracts { public interface IServiceStorage { List GetFullList(); List GetFilteredList(ServiceSearchModel model); ServiceViewModel? GetElement(ServiceSearchModel model); ServiceViewModel? Insert(ServiceBindingModel model); ServiceViewModel? Update(ServiceBindingModel model); ServiceViewModel? Delete(ServiceBindingModel model); } }