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