Пример #1
0
        public ActionResult GetUserID(string email)
        {
            FungeyeDAL DAL = new FungeyeDAL();

            string userID = DAL.GetUserID(email);

            return(RedirectToAction("GetUserInfo", new { id = userID }));
        }