예제 #1
0
// ***** Read - filter title
        private void ShowByTitle(string title = "none")
        {
            title = SetTitle();

            StreamingContent content = _repo.GetContentByTitle(title);

            if (content != null)
            {
                DisplayContent(content);
            }
            else
            {
                Console.WriteLine("not found");
            }
            Console.ReadKey();
        }
예제 #2
0
 public void TestGetTitle()
 {
     StreamingContent search = _repo.GetContentByTitle("WTH");
 }