using PrecastConcretePlantContracts.BindingModels; using PrecastConcretePlantContracts.SearchModels; using PrecastConcretePlantContracts.ViewModels; namespace PrecastConcretePlantContracts.StoragesContract { public interface IClientStorage { List GetFullList(); List GetFilteredList(ClientSearchModel model); ClientViewModel? GetElement(ClientSearchModel model); ClientViewModel? Insert(ClientBindingModel model); ClientViewModel? Update(ClientBindingModel model); ClientViewModel? Delete(ClientBindingModel model); } }