2024-03-22 01:29:50 +04:00
|
|
|
|
using TravelCompanyContracts.BindingModels;
|
|
|
|
|
using TravelCompanyContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TravelCompanyContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2024-03-22 19:04:16 +04:00
|
|
|
|
List<ReportTravelComponentViewModel> GetTravelComponents();
|
2024-03-22 01:29:50 +04:00
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
2024-03-22 19:04:16 +04:00
|
|
|
|
void SaveTravelsToWordFile(ReportBindingModel model);
|
2024-03-22 01:29:50 +04:00
|
|
|
|
void SaveTravelComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|