17 lines
504 B
C#
17 lines
504 B
C#
using CPRNIMS.Infrastructure.Dto.Inventory.Reports;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Domain.Contracts.Reports
|
|
{
|
|
public interface IReportDataService
|
|
{
|
|
List<RISRowDto> GetMain(DateTime dateFrom, DateTime dateTo);
|
|
List<DisciplineAggDto> GetDisciplines(DateTime dateFrom, DateTime dateTo);
|
|
List<TopRecipientDto> GetRecipients(DateTime dateFrom, DateTime dateTo);
|
|
}
|
|
}
|