Esempio n. 1
0
        public ActionResult UpdateDefaultImage(int galleryID, string image)
        {
            IGalleryDAC galleryDAC = new GalleryDAC();

            galleryDAC.SetDisplayImage(galleryID, image);
            return(Json(new { Success = true }));
        }
Esempio n. 2
0
        public ActionResult Delete(int id)
        {
            IGalleryDAC dac = new GalleryDAC();

            dac.Delete(id);
            return(RedirectToAction("Index"));
        }
Esempio n. 3
0
        // GET: Admin/Gallery
        public ActionResult Index()
        {
            IGalleryDAC     dac       = new GalleryDAC();
            IList <Gallery> galleries = dac.Get();

            return(View(galleries));
        }
Esempio n. 4
0
        public ActionResult Edit(int id)
        {
            IGalleryDAC dac     = new GalleryDAC();
            var         gallery = dac.GetGallery(id);
            var         model   = new GalleryEdit {
                Description = gallery.Description, GalleryID = gallery.GalleryID, Name = gallery.Name, SortOrder = gallery.SortOrder, MainImage = gallery.DisplayImage
            };

            return(View(model));
        }
Esempio n. 5
0
        public ActionResult Edit(GalleryEdit gallery)
        {
            if (!ModelState.IsValid)
            {
                return(View(gallery));
            }
            IGalleryDAC dac = new GalleryDAC();

            dac.Update(gallery.GalleryID, gallery.Name, gallery.Description, gallery.SortOrder, gallery.MainImage);
            return(RedirectToAction("Index"));
        }
Esempio n. 6
0
        public ActionResult GalleryImages(int id)
        {
            IGalleryDAC dac     = new GalleryDAC();
            Gallery     gallery = dac.GetGallery(id);

            ViewBag.GalleryTitle = gallery.Name;
            IImageDAC imageDAC = new ImageDAC();
            var       images   = imageDAC.Get(id);

            return(View(images));
        }
Esempio n. 7
0
        public ActionResult Create(GalleryCreate gallery)
        {
            if (!ModelState.IsValid)
            {
                return(View(gallery));
            }

            IGalleryDAC dac = new GalleryDAC();

            dac.Add(gallery.Name, gallery.Description, gallery.SortOrder);
            return(RedirectToAction("Index"));
        }
Esempio n. 8
0
        // GET: Admin666/Image
        public ActionResult Index(int galleryID)
        {
            IImageDAC   dac        = new ImageDAC();
            IGalleryDAC galleryDAC = new GalleryDAC();
            var         gallery    = galleryDAC.GetGallery(galleryID);

            ViewBag.Gallery      = gallery.Name;
            ViewBag.GalleryID    = gallery.GalleryID;
            ViewBag.DefaultImage = gallery.DisplayImage;
            var images = dac.Get(galleryID);

            return(View(images));
        }