Package org.opencustomer.db.dao.crm

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


       
        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.setCategory(null);
            }
           
            if(form.getRatingId() > 0) {
                if(isEntityChanged(form.getRatingId(), company.getRating()))
                    company.setRating(new RatingDAO().getById(form.getRatingId()));
            } else {
                company.setRating(null);
            }

        }
View Full Code Here

TOP

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

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.