public ActionResult Edit(int id)
        {
            BlogMainPhotoVM model = new BlogMainPhotoVM()
            {
                blogPhotoAreasList  = db.blogPhotoAreas.ToList(),
                blogPhotoAreaSingle = db.blogPhotoAreas.FirstOrDefault(m => m.Id == id),
                Action = "Edit"
            };

            return(View("Index", model));
        }
        public ActionResult Index()
        {
            BlogMainPhotoVM model = new BlogMainPhotoVM()
            {
                blogPhotoAreasList  = db.blogPhotoAreas.ToList(),
                blogPhotoAreaSingle = null,
                Action = "Create"
            };


            return(View(model));
        }