Package com.modulemodule.dao

Examples of com.modulemodule.dao.TbModuleDAO


    public int getModuleId(){
        return moduleId;
    }

    public void setModuleId(int moduleId){
      this.TbModule = new TbModuleDAO().getTbModuleByModuleId(moduleId);
        this.moduleId = moduleId;
    }
View Full Code Here


        return parentModuleId;
    }

    public void setParentModuleId(int parentModuleId){
        this.parentModuleId = parentModuleId;
        this.tbModuleParent=this.moduleId==parentModuleId?this:new TbModuleDAO().getTbModuleByModuleId(parentModuleId);
    }
View Full Code Here

TOP

Related Classes of com.modulemodule.dao.TbModuleDAO

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.