39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
|
using ServiceStationContracts.BindingModels;
|
|||
|
using ServiceStationContracts.BusinessLogicsContracts;
|
|||
|
using ServiceStationContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ServiceStationBusinessLogic.BusinessLogics
|
|||
|
{
|
|||
|
public class ExecutorReportLogic : IExecutorReportLogic
|
|||
|
{
|
|||
|
public List<ReportWorksViewModel> GetWorks(List<int> Ids)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
public List<ReportCarsViewModel> GetCars(ReportBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public void SaveComponentsToWordFile(ReportBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public void SaveOrdersToPdfFile(ReportBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public void SaveRepairComponentToExcelFile(ReportBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|