コード例 #1
0
 public bool DeleteCustomPage(int id)
 {
     if (id < 1)
     {
         return(false);
     }
     return(CustomPageHelp.DeletePage(id));
 }
コード例 #2
0
ファイル: CustomPageManage.cs プロジェクト: llenroc/kangaroo
 public bool DeleteCustomPage(int id)
 {
     return(id >= 1 && CustomPageHelp.DeletePage(id));
 }