Beispiel #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     QualifyNewClientCommand q = new Lib.Commands.QualifyNewClientCommand();
     q.FirstName = "Keith";
     q.LastName = "Elder";
     q.State = "MS";
     q.Zip = "39401";
     q.City = "Hattiesburg";
     q.Address1 = "somwhere";
     q.Id = 1000;
     _Queue.Send<QualifyNewClientCommand>(q);
 }