예제 #1
0
        public ActionResult Index(string url)
        {
            if (url != null)
            {
                _contentService.Add(url);
            }
            IEnumerable <VideoContent> videoContent = _contentService.GetAll();

            return(View(videoContent));
        }