//Get Show by Title public IHttpActionResult GetShowBytTitle(string title) { ShowService showService = CreateShowService(); var show = showService.GetShowByTitle(title); return(Ok(title)); }