public bool DeleteGalleryCategory(int categoryID) { return(GalleryCategoryRepository.DeleteGalleryCategory(categoryID)); }
public tbl_GalleryCategory GetGalleryCategory(int categoryID) { return(GalleryCategoryRepository.GetByID(categoryID)); }
public tbl_GalleryCategory SaveGalleryCategory(string catTitle, int categoryID) { return(GalleryCategoryRepository.SaveGalleryCategory(catTitle, categoryID)); }
public List <tbl_GalleryCategory> GetAllGalleryCategoriesOrdered() { return(GalleryCategoryRepository.GetAll().OrderBy(gc => gc.GC_Title).ToList()); }