using CPRNIMS.Infrastructure.Dto.Inventory.Reports; using CPRNIMS.Infrastructure.Dto.Inventory.Reports.Response; 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(DateTime dateFrom, DateTime dateTo, CancellationToken ct); Task GetMRSReportAsync(DateTime dateFrom, DateTime dateTo, CancellationToken ct); Task GetInventoryReportAsync(DateTime dateFrom, DateTime dateTo, CancellationToken ct); } }