コード例 #1
0
ファイル: guestbook.cs プロジェクト: bnhoward/ToTheLast46
 public int Add(string name, string email, string comment)
 {
     using (SprocWrapper db = new SprocWrapper())
     {
         return(db.Guestbook_Insert(name, email, comment, null));
     }
 }