Пример #1
0
 public bool Update(int ArticleId, string ArticleCommentContent, DateTime ModifiedDate, int PersonId, int CommentStatusId, int Original_ArticleCommentId)
 {
     ArticleCommentDAC articlecommentComponent = new ArticleCommentDAC();
     return articlecommentComponent.UpdateArticleComment(ArticleId, ArticleCommentContent, ModifiedDate, PersonId, CommentStatusId, Original_ArticleCommentId);
 }
Пример #2
0
 public bool Update(ArticleComment articlecomment ,int old_articleCommentId)
 {
     ArticleCommentDAC articlecommentComponent = new ArticleCommentDAC();
     return articlecommentComponent.UpdateArticleComment( articlecomment.ArticleId,  articlecomment.ArticleCommentContent,  articlecomment.ModifiedDate,  articlecomment.PersonId,  articlecomment.CommentStatusId,  old_articleCommentId);
 }