CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/BusinessLogicContracts/IReportLogic.cs

25 lines
958 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using ComputerShopContracts.BindingModels;
using ComputerShopContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.BusinessLogicContracts
{
public interface IReportLogic
{
/// Получение списка компонент с указанием, в каких изделиях используются
List<ReportPurchaseReceivingViewModel> GetPurchaseReceiving();
List<ReportPurchaseSupplyViewModel> GetPurchaseSupply();
void SavePackagesToWordFile(ReportBindingModel model);
/// Сохранение компонент с указаеним продуктов в файл-Excel
void SaveProductComponentToExcelFile(ReportBindingModel model);
/// Сохранение заказов в файл-Pdf
void SaveOrdersToPdfFile(ReportBindingModel model);
}
}