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.Client;
|
2024-04-28 15:15:17 +04:00
|
|
|
|
using BankDataModels.Enums;
|
|
|
|
|
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 IReportClientLogic
|
2024-04-28 15:15:17 +04:00
|
|
|
|
{
|
|
|
|
|
List<ReportClientViewModel>? GetCrediting(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
List<ReportClientViewModel>? GetDebiting(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
//Сохранение отчёта по картам в файл-Word
|
|
|
|
|
void SaveToWordFile(ReportBindingModel model, OfficeOperationEnum operationEnum);
|
|
|
|
|
|
|
|
|
|
//Сохранение отчёта по картам в файл-Excel
|
|
|
|
|
void SaveToExcelFile(ReportBindingModel model, OfficeOperationEnum operationEnum);
|
|
|
|
|
|
|
|
|
|
//Сохранение отчёта по картам в файл-Pdf
|
|
|
|
|
ReportClientViewModelForHTML SaveClientReportToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|