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