コード例 #1
0
ファイル: news.cs プロジェクト: bnhoward/ToTheLast46
 public bool Update(int newsID, string subject, string newsText)
 {
     using (SprocWrapper db = new SprocWrapper())
     {
         return(db.News_Update(newsID, subject, newsText));
     }
 }