Ejemplo n.º 1
0
 private void btnSearch_Click(object sender, EventArgs e)
 {
     using(new LoadingBar(this))
     {
         var db = new TvrageClient();
         var result = db.SearchByTitle(txtShowName.Text);
         DisplayResults(result);
     }
 }
Ejemplo n.º 2
0
 private void btnSearch_Click(object sender, EventArgs e)
 {
     using (new LoadingBar(this))
     {
         var db     = new TvrageClient();
         var result = db.SearchByTitle(txtShowName.Text);
         DisplayResults(result);
     }
 }
Ejemplo n.º 3
0
 public TestBase()
 {
     InitialiseIOC();
     client = _ioc.Get <TvrageClient>();
 }