правки_и_отчёты_поручитель #13
@ -72,7 +72,7 @@ namespace ServiceStationBusinessLogic.BusinessLogics
|
||||
}
|
||||
return allList;
|
||||
}
|
||||
public List<ReportCarsViewModel> GetCars(ReportBindingModel model)
|
||||
public List<ReportCarsViewModel> GetCars(ReportExecutorBindingModel model)
|
||||
{
|
||||
List<ReportCarsViewModel> allList = new List<ReportCarsViewModel>();
|
||||
|
||||
@ -116,17 +116,17 @@ namespace ServiceStationBusinessLogic.BusinessLogics
|
||||
return allList;
|
||||
}
|
||||
|
||||
public void SaveComponentsToWordFile(ReportBindingModel model)
|
||||
public void SaveWorkByCarsWordFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void SaveOrdersToPdfFile(ReportBindingModel model)
|
||||
public void SaveTechWorkAndRepairsByCarsToPdfFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void SaveRepairComponentToExcelFile(ReportBindingModel model)
|
||||
public void SaveWorkByCarsToExcelFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace ServiceStationContracts.BindingModels
|
||||
{
|
||||
public class ReportBindingModel
|
||||
public class ReportExecutorBindingModel
|
||||
{
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
|
@ -11,12 +11,12 @@ namespace ServiceStationContracts.BusinessLogicsContracts
|
||||
public interface IExecutorReportLogic
|
||||
{
|
||||
List<ReportWorksViewModel> GetWorks(List<int> Ids);
|
||||
List<ReportCarsViewModel> GetCars(ReportBindingModel model);
|
||||
List<ReportCarsViewModel> GetCars(ReportExecutorBindingModel model);
|
||||
|
||||
void SaveComponentsToWordFile(ReportBindingModel model);
|
||||
void SaveWorkByCarsWordFile(ReportExecutorBindingModel model);
|
||||
|
||||
void SaveRepairComponentToExcelFile(ReportBindingModel model);
|
||||
void SaveWorkByCarsToExcelFile(ReportExecutorBindingModel model);
|
||||
|
||||
void SaveOrdersToPdfFile(ReportBindingModel model);
|
||||
void SaveTechWorkAndRepairsByCarsToPdfFile(ReportExecutorBindingModel model);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user