2024-03-27 11:04:28 +04:00
|
|
|
|
using PlumbingRepairContracts.BindingModels;
|
|
|
|
|
using PlumbingRepairContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2024-04-09 13:35:33 +04:00
|
|
|
|
List<ReportWorkComponentViewModel> GetWorkComponent();
|
2024-03-27 11:04:28 +04:00
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
2024-04-09 13:35:33 +04:00
|
|
|
|
void SaveWorksToWordFile(ReportBindingModel model);
|
|
|
|
|
void SaveWorkComponentToExcelFile(ReportBindingModel model);
|
2024-03-27 11:04:28 +04:00
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|