2023-04-04 23:22:23 +04:00
|
|
|
|
using BankYouBankruptContracts.ViewModels;
|
2023-05-19 13:04:22 +04:00
|
|
|
|
using BankYouBankruptContracts.ViewModels.Client.Default;
|
2023-05-19 20:11:24 +04:00
|
|
|
|
using BankYouBankruptDataModels.Enums;
|
2023-04-04 23:22:23 +04:00
|
|
|
|
using System;
|
2023-04-03 16:52:51 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
//информация по excel файлу, который хотим создать
|
|
|
|
|
public class ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
//название файла
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
//заголовок
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2023-04-04 23:22:23 +04:00
|
|
|
|
|
2023-05-19 20:11:24 +04:00
|
|
|
|
//списки для отчёта клиента
|
2023-05-19 13:04:22 +04:00
|
|
|
|
public List<MoneyTransferViewModel> MoneyTransfer { get; set; } = new();
|
|
|
|
|
|
2023-05-19 20:11:24 +04:00
|
|
|
|
public List<CreditingViewModel> Crediting { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
//список для отчёта кассира и клиента
|
|
|
|
|
public List<DebitingViewModel> Debiting { get; set; } = new();
|
2023-04-04 23:22:23 +04:00
|
|
|
|
}
|
2023-04-03 16:52:51 +04:00
|
|
|
|
}
|