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

            gallery.Delete();

            ProfileController.DeleteProfileForGallery(gallery);
        }
Ejemplo n.º 2
0
        public static void DeleteGallery(Business.Gallery gallery)
        {
            gallery.Delete();

            ProfileController.DeleteProfileForGallery(gallery);
        }