Esempio n. 1
0
        public async Task <ReportDto> GetById(long id)
        {
            var report = await _iReportRepository.GetById(id);

            return(ReportMapper.MapReportToDto(report));
        }