// POST api/comments/5
        public int Post(int postId, [FromBody] Comment comment)
        {
            comment.DateTime = clock.GetTime();
            comment.PostID   = postId;
            context.Add(comment);
            context.SaveChanges();

            return(comment.ID);
        }