public async Task Update(ReportDto reportDto) { await _iReportRepository.Update(ReportMapper.MapDtoToReport(reportDto)); }
public async Task Add(ReportDto reportDto) { await _iReportRepository.Add(ReportMapper.MapDtoToReport(reportDto)); }