2023-04-08 16:51:27 +04:00
|
|
|
|
using CaseAccountingContracts.BindingModels;
|
|
|
|
|
using CaseAccountingContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CaseAccountingContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportCustomerLogic
|
|
|
|
|
{
|
2023-05-20 01:42:29 +04:00
|
|
|
|
List<ReportLawyerHearingViewModel> GetLawyersHearing(List<LawyerViewModel> models);
|
2023-04-08 16:51:27 +04:00
|
|
|
|
|
|
|
|
|
List<ReportHearingSpecializationViewModel> GetHearingSpecialization(ReportBindingModel model);
|
|
|
|
|
|
2023-05-20 01:21:33 +04:00
|
|
|
|
byte[] SaveListFile(LawyerHearingListBindingModel model);
|
|
|
|
|
|
2023-04-08 16:51:27 +04:00
|
|
|
|
void SaveLawyerHearingToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveLawyerHearingToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveHearingSpecializationToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|