2023-04-03 14:47:03 +04:00
|
|
|
|
using BankYouBankruptContracts.BindingModels;
|
|
|
|
|
using BankYouBankruptContracts.SearchModels;
|
2023-05-18 23:52:40 +04:00
|
|
|
|
using BankYouBankruptContracts.ViewModels;
|
2023-05-18 17:56:47 +04:00
|
|
|
|
using BankYouBankruptContracts.ViewModels.Client.Reports;
|
2023-05-19 20:11:24 +04:00
|
|
|
|
using BankYouBankruptDataModels.Enums;
|
2023-04-03 14:47:03 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportClientLogic
|
|
|
|
|
{
|
2023-04-04 19:21:57 +04:00
|
|
|
|
List<ReportClientViewModel>? GetCrediting(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
List<ReportClientViewModel>? GetDebiting(ReportBindingModel model);
|
2023-04-03 14:47:03 +04:00
|
|
|
|
|
|
|
|
|
//Сохранение отчёта по картам в файл-Word
|
2023-05-19 23:32:09 +04:00
|
|
|
|
void SaveToWordFile(ReportBindingModel model, OfficeOperationEnum operationEnum);
|
2023-04-03 14:47:03 +04:00
|
|
|
|
|
|
|
|
|
//Сохранение отчёта по картам в файл-Excel
|
2023-05-19 23:32:09 +04:00
|
|
|
|
void SaveToExcelFile(ReportBindingModel model, OfficeOperationEnum operationEnum);
|
2023-05-18 00:04:33 +04:00
|
|
|
|
|
2023-05-18 23:52:40 +04:00
|
|
|
|
//Сохранение отчёта по картам в файл-Pdf
|
|
|
|
|
ReportClientViewModelForHTML SaveClientReportToPdfFile(ReportBindingModel model);
|
2023-04-03 14:47:03 +04:00
|
|
|
|
}
|
|
|
|
|
}
|