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 GetRISReportAsync(InventoryReportsRequest request, CancellationToken ct); Task GetMRSReportAsync(InventoryReportsRequest request, CancellationToken ct); Task GetInventoryReportAsync(InventoryReportsRequest request, CancellationToken ct); } }