public void InsereFuncionario()
        {
            LimparBase();
            var predicado = Predicates.Field <entidade.Funcionario>(func => func.Matricula, Operator.Eq, 7239);

            entidade.Funcionario dorthyLee = new entidade.Funcionario(7239, "Dorthy Lee", "Financeiro", "Estagiário", 1491.45f, new System.DateTime(2015, 03, 16));
            _repositorio.Inserir(dorthyLee);
            var dorthyLeePersistida = _repositorio.ListarPor(dorthyLee.Matricula.Value);

            Assert.IsTrue(dorthyLeePersistida != null && dorthyLeePersistida.Matricula.HasValue);
        }