BLL.CommentService.AddComment C# (CSharp) Method

AddComment() public method

public AddComment ( Comment comment ) : bool
comment Comment
return bool
        public bool AddComment(Comment comment)
        {
            comment.State = 1;
            return commentHandler.AddComment(comment);
        }

Usage Example

Esempio n. 1
0
 public static void AddComment(Questions qs)
 {
     CommentService.AddComment(qs);
 }