public ActionResult AddComment(Comment comment)
 {
     // Create a fake ID for this comment
     _kafkaProducer.Write(comment.Text);
     return(Content("Success :)"));
 }