CourseWork_ServiceStation/ServiceStation/ServiceStationBusinessLogic/BusinessLogics/ExecutorReportLogic.cs

39 lines
1.1 KiB
C#
Raw Normal View History

2024-04-30 23:27:38 +04:00
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();
}
}
}