public List <clsEntradadeVeiculoDto> ObterDados(int tipo, String filtro)
        {
            clsEntradadeVeiculoDal _EntradaDAL = new clsEntradadeVeiculoDal();

            try
            {
                if ((tipo == 0) || (tipo == 1))
                {
                    return(_EntradaDAL.obterDados(tipo, filtro));
                }

                else
                {
                    throw new Exception("A informação do Tipo para a consulta não foi fornecedida!");
                }
            }

            catch (Exception)
            {
                throw;
            }
        }
        public List <clsEntradadeVeiculoDto> obterDados(int tipo, String filtro)
        {
            clsEntradadeVeiculoDal _EntradaDAL = new clsEntradadeVeiculoDal();

            try
            {
                if (tipo == 0 || tipo == 1)
                {
                    return(_EntradaDAL.obterDados(tipo, filtro));
                }
                else
                {
                    throw new Exception("Não foi possivel realizar a busca");
                }
            }
            catch (Exception)
            {
                return(null);

                throw;
            }
        }