using PlumbingRepairContracts.BindingModels; using PlumbingRepairContracts.SearchModels; using PlumbingRepairContracts.ViewModels; namespace PlumbingRepairContracts.BusinessLogicsContracts { public interface IComponentLogic { List? ReadList(ComponentSearchModel? model); ComponentViewModel? ReadElement(ComponentSearchModel model); bool Create(ComponentBindingModel model); bool Update(ComponentBindingModel model); bool Delete(ComponentBindingModel model); } }