Eliseev E.E. LabWork04_Hard #9

Closed
ElEgEv wants to merge 43 commits from LabWork04_Hard into LabWork03_Hard
Showing only changes of commit 65278a764a - Show all commits

View File

@ -0,0 +1,28 @@
using BlacksmithWorkshopContracts.BindingModels;
using BlacksmithWorkshopContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlacksmithWorkshopContracts.BusinessLogicsContracts
{
public interface IReportLogic
{
//Получение списка заготовок с указанием, в каких изделиях используются
List<ReportManufactureWorkPieceViewModel> GetManufactureWorkPiece();
//Получение списка заказов за определенный период
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
//Сохранение заготовок в файл-Word
void SaveWorkPiecesToWordFile(ReportBindingModel model);
//Сохранение заготовок с указаеним изделий в файл-Excel
void SaveManufactureWorkPieceToExcelFile(ReportBindingModel model);
//Сохранение заказов в файл-Pdf
void SaveOrdersToPdfFile(ReportBindingModel model);
}
}