Package com.gcrm.domain

Examples of com.gcrm.domain.DocumentSubCategory


            DocumentCategory category = document.getCategory();
            if (category != null) {
                categoryID = category.getId();
            }

            DocumentSubCategory subCategory = document.getSub_category();
            if (subCategory != null) {
                subCategoryID = subCategory.getId();
            }

            User assignedTo = document.getAssigned_to();
            if (assignedTo != null) {
                this.setAssignedToID(assignedTo.getId());
View Full Code Here


            category = documentCategoryService.getEntityById(
                    DocumentCategory.class, categoryID);
        }
        document.setCategory(category);

        DocumentSubCategory subCategory = null;
        if (subCategoryID != null) {
            subCategory = documentSubCategoryService.getEntityById(
                    DocumentSubCategory.class, subCategoryID);
        }
        document.setSub_category(subCategory);
View Full Code Here

TOP

Related Classes of com.gcrm.domain.DocumentSubCategory

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.