示例#1
0
    public List <Tema> ListarTodos()
    {
        List <Tema> lista = new List <Tema>();

        try
        {
            lista = temaDAO.PegarTodos();
        }
        catch (ExcecaoSAG ex)
        {
            throw new ExcecaoSAG(ex.getMsg());
        }
        return(lista);
    }