Exemple #1
0
 public int Save(CustomPage customPage)
 {
     CustomPageDL customPageDL=new CustomPageDL();
     if (customPage.CustomPageID > 0)
         return customPageDL.Update(customPage);
     else
         return customPageDL.Save(customPage);
 }
Exemple #2
0
 public List<CustomPage> GetCustomPagesForCustomPageCategory(int customPageCategoryID)
 {
     CustomPageDL customPageDL = new CustomPageDL();
     return customPageDL.GetCustomPagesForCustomPageCategory(customPageCategoryID);
 }
Exemple #3
0
 public CustomPage GetCustomPage(string url)
 {
     CustomPageDL customPageDL = new CustomPageDL();
     return customPageDL.GetCustomPage(url);
 }
Exemple #4
0
 public List<CustomPageCategory> GetCustomPageCategories()
 {
     CustomPageDL customPageDL = new CustomPageDL();
     return customPageDL.GetCustomPagesCategories();
 }
Exemple #5
0
 public CustomPage GetCustomPage(int customPageID)
 {
     CustomPageDL customPageDL = new CustomPageDL();
     return customPageDL.GetCustomPage(customPageID);
 }