Ejemplo n.º 1
0
 private void GetInstructions()
 {
     sw = new ShipwireClient(_uname, _pwd);
     List<Instructions> ins = sw.GetInstructionsRecipients(Convert.ToInt32(txtInput.Text));
     txtRawData.Clear();
     foreach(Instructions i in ins)
     {
         txtRawData.Text += String.Format("email: {0} - name: {1} - note: {2}\n", i.email, i.name, i.note);
     }
 }