2024-06-22 15:58:51 +04:00
|
|
|
|
using System;
|
2024-05-19 13:23:06 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using RenovationWorkContracts.BindingModels;
|
|
|
|
|
using RenovationWorkContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace RenovationWorkContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
|
|
|
|
List<ReportRepairComponentViewModel> GetRepairComponent();
|
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|
|
|
|
void SaveRepairsToWordFile(ReportBindingModel model);
|
|
|
|
|
void SaveRepairComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-22 15:58:51 +04:00
|
|
|
|
}
|