protected void btnSomar_Click(object sender, EventArgs e)
        {
            ServiceSomar.ServiceSomarClient objServiceSomar = new ServiceSomar.ServiceSomarClient();
            lblResultado.Text = objServiceSomar.Somar(int.Parse(txtValor1.Text), int.Parse(txtValor2.Text)).ToString();

            objServiceSomar = null;
        }