protected async void btnSomarAsync_Click(object sender, EventArgs e)
        {
            ServiceSomar.ServiceSomarClient objServiceSomar = new ServiceSomar.ServiceSomarClient();
            int resultado = await objServiceSomar.SomarAsync(int.Parse(txtValor1.Text), int.Parse(txtValor2.Text));

            lblResultado.Text = resultado.ToString();
            objServiceSomar = null;
        }