public ActionResult ManageProfile(string userName)
        {
            ViewBag.PossibleCountries = objICountryManager.GetAllCountry();
            ViewBag.PossibleCities    = objICityManager.GetAllCity();
            UserProfile objUserProfile = new UserProfile();

            objUserProfile = objIUserManager.GetSingleUser(objIUserManager.GetUser(userName).UserId);
            return(View(objUserProfile));
        }