public bool DeleteCustomPage(int id)
 {
     if (id < 1)
     {
         return(false);
     }
     return(CustomPageHelp.DeletePage(id));
 }
예제 #2
0
 public bool DeleteCustomPage(int id)
 {
     return(id >= 1 && CustomPageHelp.DeletePage(id));
 }