コード例 #1
0
ファイル: CommentTypeLogic.cs プロジェクト: ramyothman/RBM
 public bool Update(CommentType commenttype ,int old_commentTypeId)
 {
     CommentTypeDAC commenttypeComponent = new CommentTypeDAC();
     return commenttypeComponent.UpdateCommentType( commenttype.CommentTypeName,  old_commentTypeId);
 }
コード例 #2
0
ファイル: CommentTypeLogic.cs プロジェクト: ramyothman/RBM
 public bool Update( string CommentTypeName,  int Original_CommentTypeId)
 {
     CommentTypeDAC commenttypeComponent = new CommentTypeDAC();
     return commenttypeComponent.UpdateCommentType( CommentTypeName,  Original_CommentTypeId);
 }