コード例 #1
0
ファイル: CommentBE.cs プロジェクト: Blitzman/ProjectShode
 // /////////////////////////////////////////////////////////////////////
 // Methods /////////////////////////////////////////////////////////////
 // /////////////////////////////////////////////////////////////////////
 /// <summary>
 /// Comment Creation.
 /// Uses the comment data access component to insert the current
 /// comment in the database.
 /// </summary>
 public void create()
 {
     CommentDAC commentDAC = new CommentDAC();
     commentDAC.insertComment(this);
 }