Package org.opencustomer.db.dao.crm

Examples of org.opencustomer.db.dao.crm.CategoryDAO


        attributes.put("legalFormGroups", new LegalFormGroupDAO().getAll());
       
        attributes.put("sectors", new SectorDAO().getAll());
        attributes.put("companyTypes", new CompanyTypeDAO().getAll());
        attributes.put("companyStates", new CompanyStateDAO().getAll());
        attributes.put("categories", new CategoryDAO().getAll());
        attributes.put("ratings", new RatingDAO().getAll());

    }
View Full Code Here


                company.setCompanyState(null);
            }
           
            if(form.getCategoryId() > 0) {
                if(isEntityChanged(form.getCategoryId(), company.getCategory()))
                    company.setCategory(new CategoryDAO().getById(form.getCategoryId()));
            } else {
                company.setCategory(null);
            }
           
            if(form.getRatingId() > 0) {
View Full Code Here

TOP

Related Classes of org.opencustomer.db.dao.crm.CategoryDAO

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.