Examples of CfrSectionModel


Examples of com.cardence.lawshelf.model.cfr.CfrSectionModel

  }

  private Integer storeSectionInDatabaseWithParentId(CfrSection section, Integer databaseParentId) {
    String parentReference = this.databaseIdTracker.getReferenceForDatabaseId(databaseParentId);
    this.addCfrSectionAndParentReferenceToTracker(section, parentReference);
    final CfrSectionModel sectionModel = new CfrSectionModel(section);
    sectionModel.setParentSectionId(databaseParentId);
    sectionModel.setCodeId(this.codeId);

    this.persistenceHelper.storeSection(sectionModel);

    this.addCfrDatabaseIdToTracker(sectionModel.getId(), section.getReference());

    return sectionModel.getId();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.