20 lines
619 B
C#
20 lines
619 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CanteenContracts.ViewModels;
|
|
|
|
namespace CanteenBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class PdfInfo
|
|
{
|
|
public string FileName = $"C:\\PdfReports\\{DateTime.Now.ToString("HH.mm.ss_dd.MM.yyyy")}.pdf";
|
|
public string Title { get; set; }
|
|
public DateTime DateAfter { get; set; }
|
|
public DateTime DateBefore { get; set; }
|
|
public List<ReportLunchesPCView> Lunches { get; set; }
|
|
public List<ReportCooksPCView> Cooks { get; set; }
|
|
}
|
|
}
|