コード例 #1
0
ファイル: ShowsLogic.cs プロジェクト: Y-Moshe/asp.net_project
 public void AddShow(string showTitle, string showImageUrl, string showAddress,
                     decimal?showCardPrice, DateTime?showDate, int?showDiscount = 0, string comments = "אין הערות")
 {
     Cs.AddShow(showTitle, showImageUrl, showDate, showDiscount, showCardPrice, showAddress, comments);
     Cs.SubmitChanges();
 }