27 lines
903 B
C#
27 lines
903 B
C#
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
|
|
{
|
|
List<ReportCashierViewModel>? GetMoneyTransfers(ReportBindingModel model);
|
|
|
|
List<ReportCashierViewModel>? GetCashWithrawals(ReportBindingModel model);
|
|
|
|
//Сохранение отчёта по счетам в файл-Word
|
|
void SaveAccountsToWordFile(ReportBindingModel model);
|
|
|
|
//Сохранение отчёта по счетам в файл-Excel
|
|
void SaveAccountsToExcelFile(ReportBindingModel model);
|
|
|
|
//Сохранение отчёта по счетам в файл-Pdf
|
|
void SaveAccountsToPdfFile(ReportBindingModel model);
|
|
}
|
|
}
|