public ActionResult Index()
        {
            var categoryLookup = _categoryDomain.GetCateroryList();

            ViewBag.Category = new SelectList(categoryLookup, "CategoryId", "CategoryName");;

            var model = _userDomain.GetUserImageGalleries(User.Identity.GetUserName());

            return(View(model));
        }