public static void UpdateGallery(Business.Gallery gallery)
        {
            if (gallery == null)
            {
                throw new ArgumentNullException("gallery");
            }

            gallery.Save();
        }
Beispiel #2
0
 public static void UpdateGallery(Business.Gallery gallery)
 {
     gallery.Save();
 }
Beispiel #3
0
 public static void AddGallery(Business.Gallery gallery)
 {
     gallery.Save();
 }