public bool salvarAluno(Aluno aluno) { IDaoAluno dao = FactoryDao.GetDaoAluno(); if (dao.Gravar(aluno)) { return(true); } else { return(false); } }
public void TestarAlterar() { IDaoAluno dao = FactoryDao.GetDaoAluno(); Aluno aluno = new Aluno() { Nome = "ze", Cpf = "2015", DataNascimento = "10/10/1987", Rg = "30211404", Curso = 3 }; Assert.IsTrue(dao.Alterar(aluno, "2013", "cpf")); }
public void TestaGravacao() { IDaoAluno dao = FactoryDao.GetDaoAluno(); Aluno aluno = new Aluno() { Nome = "Ze", Cpf = "2013", DataNascimento = "10/10/1910", Rg = "30211404", Curso = 2 }; Assert.IsTrue(dao.Gravar(aluno)); }
public List <Aluno> buscarAluno(string palavra, string filtro) { IDaoAluno dao = FactoryDao.GetDaoAluno(); try { List <Aluno> lista = dao.Listar(palavra, filtro); if (lista != null) { return(lista); } else { return(null); } } catch (Exception e) { Console.WriteLine(e.Message); } return(null); }
public void TestarListar() { IDaoAluno dao = FactoryDao.GetDaoAluno(); // Assert.IsTrue(dao.Listar().Count > 0); }
public void TestarBuscar() { IDaoAluno dao = FactoryDao.GetDaoAluno(); Assert.IsNotNull(dao.Buscar("58495670", "cpf")); }
public void TestarDeletar() { IDaoAluno dao = FactoryDao.GetDaoAluno(); Assert.IsTrue(dao.Deletar("2015", "cpf")); }