public List <clsVeiculoDto> ObterDados(int tipo, String filtro) { try { clsVeiculoDal _veiculoDal = new clsVeiculoDal(); if ((tipo == 0) || (tipo == 1)) { return(_veiculoDal.obterDados(tipo, filtro)); } else { throw new Exception("A informação do Tipo para a consulta não foi fornecedida!"); } } catch (Exception) { throw; } }
public List <clsVeiculoDto> obterDados(int tipo, String filtro) { try { clsVeiculoDal _veiculoDal = new clsVeiculoDal(); if (tipo == 0 || tipo == 1) { return(_veiculoDal.obterDados(tipo, filtro)); } else { throw new Exception("Não foi possivel realizar a busca"); } } catch (Exception) { return(null); throw; } }