using CarRepairShopContracts.BindingModels; using CarRepairShopContracts.SearchModels; using CarRepairShopContracts.ViewModels; namespace CarRepairShopContracts.StoragesContracts { public interface IRepairStorage { List GetFullList(); List GetFilteredList(RepairSearchModel model); RepairViewModel? GetElement(RepairSearchModel model); RepairViewModel? Insert(RepairBindingModel model); RepairViewModel? Update(RepairBindingModel model); RepairViewModel? Delete(RepairBindingModel model); } }