Пример #1
0
        public ActionResult Index()
        {
            //Check if local and remote SDN files are equal
            XmlDiffHtml xdh = new XmlDiffHtml();

            ViewBag.HtmlContent = xdh.GetXmlDiffHtml();

            return(View());
        }
Пример #2
0
        public ActionResult Patch()
        {
            //Patch local file with the difference
            XmlDiffHtml xdh = new XmlDiffHtml();

            xdh.PatchList();
            //Check if local and remote SDN files are equal
            ViewBag.HtmlContent = xdh.GetXmlDiffHtml();
            return(View("Index"));
        }