public DefectAnnotationsDto GetAnnotations(Guid defectId)
        {
            DefectAnnotationsDto result = new DefectAnnotationsDto
            {
                Images         = _mapper.Map <IEnumerable <ImageDto> >(_defectService.GetImagesByDefectId(defectId)),
                AnnotationData = _mapper.Map <AnnotationsDto>(_defectService.FindById(defectId))
            };

            return(result);
        }