Beispiel #1
0
 public static Common.GalleryImage LoadGalleryImage(Guid galleryImageGuid)
 {
     Business.GalleryImage galleryImageController = new Business.GalleryImage();
     Common.GalleryImage   galleryImage           = new Common.GalleryImage();
     galleryImageController.Load(galleryImageGuid, galleryImage);
     return(galleryImage);
 }
Beispiel #2
0
 public static bool ActiveGallery(Guid galleryGuid)
 {
     Business.GalleryImage galleryImageController = new Business.GalleryImage();
     return(galleryImageController.ActiveGallery(galleryGuid));
 }
Beispiel #3
0
 public static bool Delete(Guid galleryImageGuid)
 {
     Business.GalleryImage galleryImageController = new Business.GalleryImage();
     return(galleryImageController.Delete(galleryImageGuid));
 }
Beispiel #4
0
 public static bool Update(Common.GalleryImage galleryImage)
 {
     Business.GalleryImage galleryImageController = new Business.GalleryImage();
     return(galleryImageController.Update(galleryImage));
 }
Beispiel #5
0
 public static bool Insert(Common.GalleryImage galleryImage)
 {
     Business.GalleryImage galleryImageController = new Business.GalleryImage();
     return(galleryImageController.Insert(galleryImage) != Guid.Empty ? true : false);
 }
Beispiel #6
0
 public static DataTable GetAllGalleryImage(Guid userGuid)
 {
     Business.GalleryImage galleryImageController = new Business.GalleryImage();
     return(galleryImageController.GetAllGalleryImage(userGuid));
 }