public List <Cliente> BuscarTodos(DateTime dtinicio, DateTime dtfim)
        {
            List <Cliente> clientes = new List <Cliente>();

            try
            {
                clientes.AddRange(_clienteDAL.BuscarTodos(dtinicio, dtfim));
                return(clientes);
            }
            catch (ConcorrenciaBancoException)
            {
                throw new ConcorrenciaBancoException("Favor tentar novamente mais tarde.");
            }
        }