Ejemplo n.º 1
0
        public ActionResult DecryptLillyid(string lillyId)
        {
            if (string.IsNullOrEmpty(ViewBag.LillyId))
            {
                return(Redirect("/notauthed.html"));
            }
            var id = _objService.DecryptLillyid(lillyId);

            _Logger.Debug(string.Format("url testing. lillyid:{0}", id));
            return(Json(new { ok = "ok" }, JsonRequestBehavior.AllowGet));
        }