public async Task <IActionResult> CreateComment([FromBody] Comment comment) { await topicObj.AddCommentToDBAsync(comment); return(Ok()); }