правки_и_отчёты_поручитель #13

Merged
TabeevAlexander merged 3 commits from правки_и_отчёты_поручитель into main 2024-05-01 15:05:16 +04:00
3 changed files with 9 additions and 9 deletions
Showing only changes of commit fc21f98c76 - Show all commits

View File

@ -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();
}

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace ServiceStationContracts.BindingModels
{
public class ReportBindingModel
public class ReportExecutorBindingModel
{
public string FileName { get; set; } = string.Empty;

View File

@ -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);
}
}