20 lines
670 B
C#
20 lines
670 B
C#
|
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
|
|||
|
{
|
|||
|
List<ReportWorkComponentViewModel> GetProductComponent();
|
|||
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|||
|
void SaveComponentsToWordFile(ReportBindingModel model);
|
|||
|
void SaveProductComponentToExcelFile(ReportBindingModel model);
|
|||
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|||
|
}
|
|||
|
}
|