Ejemplo n.º 1
0
        public IHttpActionResult Add(string title)
        {
            if (!ModelState.IsValid)
            {

            }

            Comment comment = new Comment();
            //  comment.CommentAdd += Comment_CommentAdd;
            comment.Title = title ?? string.Empty;
            comment.Do();
            return Json(comment);
        }
Ejemplo n.º 2
0
 public CommentArgs(Comment comment)
 {
     this.Comment = comment;
 }
Ejemplo n.º 3
0
 public CommentArgs(Comment comment)
 {
     this.Comment = comment;
 }