예제 #1
0
 public IHttpActionResult AddComment([FromBody] CommentModel comment)
 {
     serviceRepository.AddComment(comment);
     return(Ok());
 }