public ActionResult GetLogger(string id)
        {
            ConfigHistory model = LoggerManager.GetConfigHistory(id);

            if (model?.ObjectType.Trim().ToLower() == "ACFV2".ToLower())
            {
                return(View(model));
            }
            else
            {
                return(HttpNotFound());
            }
            // return Json(model,JsonRequestBehavior.AllowGet);
        }
Ejemplo n.º 2
0
 public ActionResult HomePageLogerDeatil(int id)
 {
     return(View(LoggerManager.GetConfigHistory(id.ToString())));
 }