예제 #1
0
 //localizarProdutoCodigoBarra
 public DataTable localizarProdutoCodigoBarra(String descricao)
 {
     try{
         DataTable tab;
         objDAL = new ProdutosDAL();
         tab    = objDAL.localizarProdutoCodigoBarra(descricao);
         objDAL = null;
         return(tab);
     }catch (Exception) {
         throw;
     }
 }