19 lines
642 B
C#
19 lines
642 B
C#
using CPRNIMS.Infrastructure.Dto.Inventory.Reports;
|
|
using CPRNIMS.Infrastructure.Dto.Inventory.Request;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Domain.UIContracts.Inventory
|
|
{
|
|
public interface IInventoryReports
|
|
{
|
|
|
|
Task<RISReportDto> GetRISReportAsync(InventoryReportsRequest request, CancellationToken ct);
|
|
Task<MRSReportDto> GetMRSReportAsync(InventoryReportsRequest request, CancellationToken ct);
|
|
Task<InventoryReportDto> GetInventoryReportAsync(InventoryReportsRequest request, CancellationToken ct);
|
|
}
|
|
}
|