2023-04-03 14:47:03 +04:00
|
|
|
|
using BankYouBankruptContracts.BindingModels;
|
|
|
|
|
using BankYouBankruptContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportCashierLogic
|
|
|
|
|
{
|
2023-04-04 23:22:23 +04:00
|
|
|
|
List<ReportCashierViewModel>? GetMoneyTransfers(ReportBindingModel model);
|
2023-04-03 14:47:03 +04:00
|
|
|
|
|
2023-04-04 23:22:23 +04:00
|
|
|
|
List<ReportCashierViewModel>? GetCashWithrawals(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
//Сохранение отчёта по счетам в файл-Word
|
|
|
|
|
void SaveAccountsToWordFile(ReportBindingModel model);
|
2023-04-03 14:47:03 +04:00
|
|
|
|
|
|
|
|
|
//Сохранение отчёта по счетам в файл-Excel
|
|
|
|
|
void SaveAccountsToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
2023-05-18 23:52:40 +04:00
|
|
|
|
//Сохранение отчёта по счетам в файл-Pdf
|
|
|
|
|
ReportCashierViewModelForHTML SaveAccountsToPdfFile(ReportBindingModel model);
|
2023-04-03 14:47:03 +04:00
|
|
|
|
}
|
|
|
|
|
}
|