Package br.com.visualmidia.persistence

Examples of br.com.visualmidia.persistence.GetAllStudent


import br.com.visualmidia.system.GDSystem;

public class Exportacao {
  public static void main(String[] args) throws Exception {
    GDSystem system = GDSystem.getInstance();
    List<Person> users = (List<Person>) system.query(new GetAllStudent());

    // aluno;rg; cpf;data nasc; endere�o + numero, bairro, cidade, estado,
    // cep; telefones
    String export = "ALUNO;RG;CPF;DATA NASCIMENTO;ENDERECO;BAIRRO;CIDADE;ESTADO;CEP;TELEFONE;CELULAR\n";
    for (Person person : users) {
View Full Code Here

TOP

Related Classes of br.com.visualmidia.persistence.GetAllStudent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.