Package pl.edu.prz.kia.ntp.interfaceModule.Criteria

Examples of pl.edu.prz.kia.ntp.interfaceModule.Criteria.RepertuarCriteriaTO


   
    public List<RepertuarDTO> getRepertuar() {
        if(Repertuar == null){
            try{
                DelegateM2 delegate = new DelegateM2();
                RepertuarCriteriaTO criteria = new RepertuarCriteriaTO();
                Repertuar  = delegate.getRepertuar(criteria);
            } catch(Exception e) {Repertuar = new ArrayList<RepertuarDTO>();}
            session.setAttribute(SessionVariables.REPERTUAR_LIST_DTO, Repertuar);
        }
        return Repertuar;
View Full Code Here

TOP

Related Classes of pl.edu.prz.kia.ntp.interfaceModule.Criteria.RepertuarCriteriaTO

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.