public IHttpActionResult AddComment([FromBody] CommentModel comment) { serviceRepository.AddComment(comment); return(Ok()); }