using LSFE.Infrastructure.Dto.Reports; using LSFE.Infrastructure.Entities.Reports; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Domain.Contracts.Reports { public interface IReportsRepo { Task> GetCallRateReport(ReportsDto dto); Task> GetCallReachReport(ReportsDto dto); Task> GetCatchUpCallReport(ReportsDto dto); Task> GetActualCoverageReport(ReportsDto dto); Task PutMissedCall(ReportsDto dto); } }