public IdentifiableDTO <ReportDTO> GetReportForAppointment(Guid id)
 {
     try
     {
         return(ReportMapper.MapReportEntityToReportIdentifierDTO(_reportRepository.GetReportForAppointment(id)));
     }
     catch (ArgumentNullException)
     {
         throw new NotFoundEntityException();
     }
     catch (Exception)
     {
         throw new InternalServerErrorException();
     }
 }