public async Task <List <CommentDTO> > GetCommentsByPhotoId(int photoId)
        {
            var response = await _albumsInterface.GetCommentsByPhotoId(photoId);

            var comments = response.Select(x => new CommentDTO
            {
                Id   = x.Id,
                Name = x.Name,
                Body = x.Body
            }).ToList();

            return(comments);
        }