public int SelectID(string nome) { if (nome.Length == 0) { throw new Exception("Escolha um Cliente"); } else { clienteDados = new ClienteDao(); return clienteDados.SelectId(nome); } }