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