Example #1
0
        public ActionResult Index(string newfeedurl)
        {
            if (string.IsNullOrEmpty(newfeedurl))
            {
                return(null);
            }
            var feedDTO = _feedManager.Add(newfeedurl);

            return(RedirectToAction("Index"));
        }