Package kpi.asoiu.factory

Source Code of kpi.asoiu.factory.DAOFactory

package kpi.asoiu.factory;

import kpi.asoiu.dao.RuleDao;
import kpi.asoiu.dao.SimpleDAO;

public class DAOFactory {

    public static RuleDao getRuleDAO() {
        return new RuleDao();
    }

    public static SimpleDAO getDao() {
        return new SimpleDAO();
    }
}
TOP

Related Classes of kpi.asoiu.factory.DAOFactory

TOP
Copyright © 2018 www.massapi.com. 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.