26 lines
827 B
C#
26 lines
827 B
C#
using Contracts.BindingModels;
|
||
using Contracts.ViewModels;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Contracts.BusinessLogicContracts
|
||
{
|
||
public interface IReportLogic
|
||
{
|
||
/// <summary>
|
||
/// Получение списка компонент с указанием, в каких изделиях используются
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
List<ReportSupplyProductViewModel> GetSupplyProduct();
|
||
/// <summary>
|
||
/// Сохранение заказов в файл-Pdf
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
void SaveSuppliesToPdfFile(ReportBindingModel model);
|
||
void SaveProductToPdfFile(ReportBindingModel model);
|
||
}
|
||
}
|