2023-04-08 17:03:58 +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 IReportProviderLogic
|
|
|
|
|
{
|
2023-04-09 01:01:14 +04:00
|
|
|
|
List<ReportCaseSpecializationViewModel> GetCaseSpecialization(List<CaseViewModel> models);
|
2023-04-08 17:03:58 +04:00
|
|
|
|
|
|
|
|
|
List<ReportHearingLawyerViewModel> GetHearingLawyer(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveCaseSpecializationToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveCaseSpecializationToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveHearingLawyerToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|