public List <Comment> GetCommentsOfImages([FromRoute] int imgId)
        {
            List <Comment> comments = repository.CommentsOfImage(imgId);

            return(comments);
        }