2023-05-20 12:11:48 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using CanteenContracts.View;
|
|
|
|
|
using CanteenContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace CanteenBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class ExcelInfo
|
|
|
|
|
{
|
2023-06-19 09:12:18 +04:00
|
|
|
|
public string FileName = $"C:\\XlsxReports\\{DateTime.Now.ToString("HH.mm.ss_dd.MM.yyyy")}.xlsx";
|
2023-05-20 12:11:48 +04:00
|
|
|
|
public string Title { get; set; }
|
2023-06-14 22:47:30 +04:00
|
|
|
|
public List<ReportCookView> Cooks { get; set; }
|
|
|
|
|
public List<ReportOrderView> Orders { get; set; }
|
2023-05-20 12:11:48 +04:00
|
|
|
|
}
|
|
|
|
|
}
|