Ejemplo n.º 1
0
 public bool DeleteGalleryCategory(int categoryID)
 {
     return(GalleryCategoryRepository.DeleteGalleryCategory(categoryID));
 }
Ejemplo n.º 2
0
 public tbl_GalleryCategory GetGalleryCategory(int categoryID)
 {
     return(GalleryCategoryRepository.GetByID(categoryID));
 }
Ejemplo n.º 3
0
 public tbl_GalleryCategory SaveGalleryCategory(string catTitle, int categoryID)
 {
     return(GalleryCategoryRepository.SaveGalleryCategory(catTitle, categoryID));
 }
Ejemplo n.º 4
0
 public List <tbl_GalleryCategory> GetAllGalleryCategoriesOrdered()
 {
     return(GalleryCategoryRepository.GetAll().OrderBy(gc => gc.GC_Title).ToList());
 }