Example #1
0
        //Get Show by Title
        public IHttpActionResult GetShowBytTitle(string title)
        {
            ShowService showService = CreateShowService();
            var         show        = showService.GetShowByTitle(title);

            return(Ok(title));
        }