Package daoI

Examples of daoI.IJudetDao


        }
        return beneficiari;
    }

    public List<Judet> getJudete() {
        IJudetDao judetDao = new JudetDao();
        List<Judet> judete = judetDao.getAll();
        return judete;
    }
View Full Code Here


        List<Geolog> geologi = geologDao.getAll();
        return geologi;
    }

    public List<Judet> getJudete() {
        IJudetDao judetDao = new JudetDao();
        List<Judet> judete = judetDao.getAll();
        return judete;
    }
View Full Code Here

TOP

Related Classes of daoI.IJudetDao

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.