BLL.CommentService.AddComment C# (CSharp) Méthode

AddComment() public méthode

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

Usage Example

Exemple #1
0
 public static void AddComment(Questions qs)
 {
     CommentService.AddComment(qs);
 }