Пример #1
0
 protected void SaveShipper_Button_Click(object sender, EventArgs e)
 {
     NwService.ShipperServiceClient client = new NwService.ShipperServiceClient();
     MyShipper shippe = new MyShipper();
     shippe.ShipperId = Convert.ToInt32(DisplayShipperID_TextBox.Text.Trim());
     shippe.CompanyName = CompanyName_TextBox.Text.Trim();
     shippe.Phone = Phone_TextBox.Text.Trim();
     client.SaveShipper(shippe);
 }