2024-04-28 15:15:17 +04:00
|
|
|
|
using BankContracts.BindingModels.Reports;
|
2024-04-30 22:39:45 +04:00
|
|
|
|
using BankContracts.ViewModels.Reports;
|
|
|
|
|
using BankContracts.ViewModels.Reports.Cashier;
|
2024-04-28 15:15:17 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.BusinessLogicsContracts.Reports
|
|
|
|
|
{
|
2024-04-30 22:39:45 +04:00
|
|
|
|
// Интерфейс бизнес-логики для отчёта (Кассир)
|
|
|
|
|
public interface IReportCashierLogic
|
2024-04-28 15:15:17 +04:00
|
|
|
|
{
|
|
|
|
|
List<ReportCashierViewModel>? GetMoneyTransfers(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
List<ReportCashierViewModel>? GetCashWithrawals(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
// Сохранение отчёта по счетам в файл-Word
|
|
|
|
|
void SaveAccountsToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
// Сохранение отчёта по счетам в файл-Excel
|
|
|
|
|
void SaveAccountsToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
// Сохранение отчёта по счетам в файл-Pdf
|
|
|
|
|
ReportCashierViewModelForHTML SaveAccountsToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|