private void button1_Click(object sender, EventArgs e) { Proxy.ProductsServiceClient Proxy = new Proxy.ProductsServiceClient("HTTP_EndPoint"); int prodID = 1; int stockLevel = Proxy.GetStockLevel(prodID); MessageBox.Show(stockLevel.ToString()); }
private void button2_Click(object sender, EventArgs e) { Proxy.ProductsServiceClient Proxy = new Proxy.ProductsServiceClient("HTTP_EndPoint"); dataGridView1.DataSource = Proxy.GetProductsList(); }