PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
2024-04-08 00:02:59 +04:00

47 lines
1.4 KiB
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 AircraftPlantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantBusinessLogic.OfficePackage.HelperModels
{
/// <summary>
/// Модель для передачи данных
/// для создания отчета в Pdf-файле
/// </summary>
public class PdfInfo
{
/// <summary>
/// Название файла
/// </summary>
public string FileName { get; set; } = string.Empty;
/// <summary>
/// Заголовок
/// </summary>
public string Title { get; set; } = string.Empty;
/// <summary>
/// Начало периода выборки данных
/// </summary>
public DateTime DateFrom { get; set; }
/// <summary>
/// Конец периода выборки данных
/// </summary>
public DateTime DateTo { get; set; }
/// <summary>
/// Список заказов
/// </summary>
public List<ReportOrdersViewModel> Orders { get; set; } = new();
/// <summary>
/// Список заказов с группировкой по датам
/// </summary>
public List<ReportGroupOrdersViewModel> GroupOrders { get; set; } = new();
}
}