コード例 #1
0
ファイル: ClienteRN.cs プロジェクト: UCLINF-20152-PI1/Alpha
 public int SelectID(string nome)
 {
     if (nome.Length == 0)
     {
         throw new Exception("Escolha um Cliente");
     }
     else
     {
         clienteDados = new ClienteDao();
         return clienteDados.SelectId(nome);
     }
 }