I have a method that gives me an execption, how do I handle this ?: thanks
public string CarregaProdutosDermaClube(string codigoproduto)
{
//consulta os dados
var tbuscar = new BuscaProdutosDermaClubeDAL();
var retorno = tbuscar.ProdutoDermaClube(codigoproduto);
if (string.IsNullOrEmpty(retorno.idproduto))
{
return "0";
}
else
{
return "1";
}
}