15 lines
449 B
C#
15 lines
449 B
C#
using ServiceStationContracts.BindingModels;
|
|
using ServiceStationContracts.SearchModels;
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|
{
|
|
public interface IReportLogic
|
|
{
|
|
List<ReportViewModel>? ReadList(ReportSearchModel model);
|
|
bool Create(ReportBindingModel model);
|
|
bool Update(ReportBindingModel model);
|
|
bool Delete(ReportBindingModel model);
|
|
}
|
|
}
|