Package com.vst.dao

Examples of com.vst.dao.ObjectConstructionDao


                Integer objectConstructionId = objectAnswer.getObjectConstructionId();
                Integer buildingObjectId = objectAnswer.getBuildingObjectId();
                if (objectConstructionId != null) {
                    try {

                        ObjectConstructionDao objectConstructionDao = (ObjectConstructionDao) factory.getBean("objectConstructionDao");
                        ObjectConstruction objectConstruction = objectConstructionDao.getObjectConstruction(objectConstructionId);
                        referenceList.add("<a href='objectConstructions.html?typeId=" + objectConstruction.getTypeId() + "&objectId=" + objectConstruction.getObjectId() + "'>Вопрос по виду конструкции - " + objectConstruction.getConstructionType() + (objectConstruction.getDescription() == null ? "-" + objectConstruction.getDescription() : "") + "</a><br/>");
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
View Full Code Here


           new String[]{"com/vst/snippets/snippetsContext-hibernate.xml"});

       final BuildingObjectDao buildingDao =
         (BuildingObjectDao) context.getBean("buildingObjectDao");

       final ObjectConstructionDao ocDao =
         (ObjectConstructionDao) context.getBean("objectConstructionDao");

       final ConstructionExampleDao csamplesDao =
         (ConstructionExampleDao) context.getBean("constructionExampleDao");
View Full Code Here

TOP

Related Classes of com.vst.dao.ObjectConstructionDao

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.