29 lines
1.2 KiB
C#
29 lines
1.2 KiB
C#
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();
|
||
|
||
public List<ReportComponentReceivingViewModel> GetComponentReceivings(List<int> ids);
|
||
|
||
void SavePackagesToWordFile(ReportBindingModel model);
|
||
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
||
void SaveProductComponentToExcelFile(ReportBindingModel model);
|
||
/// Сохранение заказов в файл-Pdf
|
||
void SaveOrdersToPdfFile(ReportBindingModel model);
|
||
void SaveReceivingComponentsToWordFile(ReportBindingModel model);
|
||
void SaveReceivingComponentsToXmlFile(ReportBindingModel model);
|
||
}
|
||
}
|