using ServiceStationContracts.BindingModels; using ServiceStationContracts.SearchModels; using ServiceStationContracts.ViewModels; namespace ServiceStationContracts.BusinessLogicContracts { public interface IReportLogic { List? ReadList(ReportSearchModel model); bool Create(ReportBindingModel model); bool Update(ReportBindingModel model); bool Delete(ReportBindingModel model); } }