// ***** 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(); }
public void TestGetTitle() { StreamingContent search = _repo.GetContentByTitle("WTH"); }