17 lines
515 B
C#
17 lines
515 B
C#
using CPRNIMS.Infrastructure.Dto.Inventory.Reports;
|
|
using FastReport;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Domain.Contracts.Reports
|
|
{
|
|
public interface IReportBuilder
|
|
{
|
|
Task<Report> RISBuildAsync(DateTime dateFrom, DateTime dateTo, string templatePath, CancellationToken ct);
|
|
Task<Report> MRSBuildAsync(DateTime dateFrom, DateTime dateTo, string templatePath, CancellationToken ct);
|
|
}
|
|
}
|