コード例 #1
0
ファイル: TempRegraNegocios.cs プロジェクト: tiautocom/CFe
 public void AlterarCpfCliente(string cpf, int tipo, string nome)
 {
     try
     {
         novoTemp = new AcessoDados.TempAcessoDados();
         novoTemp.AlterarCpfCliente(cpf, tipo, nome);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
コード例 #2
0
ファイル: TempRegraNegocios.cs プロジェクト: tiautocom/CFe
 public DataTable PesquisarCpfTemp()
 {
     try
     {
         novoTemp = new AcessoDados.TempAcessoDados();
         DataTable dadosTabela = new DataTable();
         dadosTabela = novoTemp.PesquisarCpfTemp();
         return(dadosTabela);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }