public SurgicalOperationDetailsConfigVo(
     ims.clinicaladmin.vo.beans.SurgicalOperationDetailsConfigVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.surgeon = bean.getSurgeon() == null ? null : bean.getSurgeon().buildVo();
   this.procedurereference =
       bean.getProcedureReference() == null ? null : bean.getProcedureReference().buildVo();
   this.procedure = bean.getProcedure();
   this.incision = bean.getIncision();
   this.findings = bean.getFindings();
   this.closure = bean.getClosure();
   this.postopinstructions = bean.getPostOpInstructions();
   this.prosthesis = bean.getProsthesis();
   this.drain = bean.getDrain();
   this.actionsforgp = bean.getActionsforGP();
   this.nurseenabledinstructions = bean.getNurseEnabledInstructions();
   this.hospitalplan = bean.getHospitalPlan();
 }