public ActionResult updatePassword(string id)
        {
            AccountAccessLayer accountAccessLayer = new AccountAccessLayer();

            return(View(accountAccessLayer.SelectDataById(id)));
        }
        public ActionResult editAccount(string id)
        {
            AccountAccessLayer accountAccessLayer = new AccountAccessLayer();

            return(View(accountAccessLayer.SelectDataById(id)));
        }