2024-03-24 00:37:06 +04:00
|
|
|
|
using AutomobilePlantContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class PdfInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public DateTime DateFrom { get; set; }
|
|
|
|
|
public DateTime DateTo { get; set; }
|
|
|
|
|
public List<ReportOrdersViewModel> Orders { get; set; } = new();
|
2024-03-25 00:39:31 +04:00
|
|
|
|
public List<ReportDateOrdersViewModel> DateOrders { get; set; } = new();
|
2024-03-24 00:37:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|