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