2024-04-30 01:41:35 +03:00
|
|
|
|
using ServiceStationContracts.BindingModels;
|
|
|
|
|
using ServiceStationContracts.SearchModels;
|
|
|
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2024-04-30 20:47:38 +03:00
|
|
|
|
ReportViewModel? ReadList(ReportSearchModel model);
|
|
|
|
|
bool Create(ReportBindingModel model);
|
|
|
|
|
bool Update(ReportBindingModel model);
|
|
|
|
|
bool Delete(ReportBindingModel model);
|
2024-04-30 01:41:35 +03:00
|
|
|
|
}
|
|
|
|
|
}
|