using PrecastConcretePlantContracts.BindingModels; using PrecastConcretePlantContracts.SearchModels; using PrecastConcretePlantContracts.ViewModels; namespace PrecastConcretePlantContracts.BusinessLogicsContracts { public interface IReinforcedLogic { List? ReadList(ReinforcedSearchModel? model); ReinforcedViewModel? ReadElement(ReinforcedSearchModel model); bool Create(ReinforcedBindingModel model); bool Update(ReinforcedBindingModel model); bool Delete(ReinforcedBindingModel model); } }