Package br.com.visualmidia.persistence.add

Examples of br.com.visualmidia.persistence.add.AddAndEditRegistrationStatus


       
        List<String> motives = new ArrayList<String>();
        motives.add("Terminou no prazo");
        motives.add("Terminou antes do prazo");
        motives.add("Terminou ap�s o prazo");
        system.execute(new AddAndEditRegistrationStatus("Concluida", motives));

        motives.clear();
       
        motives.add("Inadimplente");
        motives.add("Ausente nas aulas");
        motives.add("Problemas internos");
        motives.add("Mudou-se");
        motives.add("Faleceu");
        motives.add("Falta de contato");
        system.execute(new AddAndEditRegistrationStatus("Desativada", motives));

        motives.clear();
       
        motives.add("N�o gostou do curso");
        motives.add("N�o gostou do atendimento");
        motives.add("Perdeu o emprego");
        motives.add("Mudou-se");
        motives.add("Financeiro");
        motives.add("Sem motivos � declarar");
        system.execute(new AddAndEditRegistrationStatus("Desistiu", motives));
    }
View Full Code Here

TOP

Related Classes of br.com.visualmidia.persistence.add.AddAndEditRegistrationStatus

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.