using BeautySalonContracts.BindingModels; using BeautySalonContracts.SearchModels; using BeautySalonContracts.ViewModels; namespace BeautySalonContracts.StoragesContracts { public interface IMasterStorage { List GetFullList(); List GetFilteredList(MasterSearchModel model); MasterViewModel? GetElement(MasterSearchModel model); MasterViewModel? Insert(MasterBindingModel model); MasterViewModel? Update(MasterBindingModel model); MasterViewModel? Delete(MasterBindingModel model); } }