コード例 #1
0
        private static IGallery CreateGallery(string description)
        {
            IGallery gallery = Factory.CreateGalleryInstance();

            gallery.Description = description;
            gallery.Save();


            // Sueetie Modified - Create Sueetie Media Gallery record stub
            SueetieMedia.CreateMediaGallery(gallery.GalleryId);

            return(gallery);
        }