Boa tarde !! Criei dois métados um para Cadastra Clientes e o outro para Buscar Clientes. Para Cadastrar Clientes esta funcionando perfeitamente, mais quando desejo BUSCAR CLIENTE não funciona e pior não aparece erro nenhuma. Segue o código:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ConsumindoServico.ServiceReference1;
namespace ConsumindoServico
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
}
private void btnBuscar_Click(object sender, EventArgs e)
{
string nome = txtNome.Text;
try
{
ClienteServiceClient servico = new ClienteServiceClient();
Cliente resultado = servico.Buscar(nome);
txtCpf.Text = resultado.Cpf;
}
catch (Exception)
{
// Trazer o cpf
}
}
private void button2_Click_1(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
private void btnSalvar_Click(object sender, EventArgs e)
{
string nome = txtNome.Text;
string cpf = txtCpf.Text;
try
{
ClienteServiceClient servico = new ClienteServiceClient();
Cliente clienteCadastro = new Cliente();
clienteCadastro.Nome = nome;
clienteCadastro.Cpf = cpf;
servico.Add(clienteCadastro);
MessageBox.Show("Cliente cadastrado com sucesso");
}
catch (Exception)
{
// No exception salvaria o Log
}
}
private void textNome_TextChanged(object sender, EventArgs e)
{
}
}
}