public ElectiveListHospitalConfigurationVo(
     ims.admin.vo.beans.ElectiveListHospitalConfigurationVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.casenotefolderlocation =
       bean.getCaseNoteFolderLocation() == null
           ? null
           : bean.getCaseNoteFolderLocation().buildVo();
   this.listlocation = bean.getListLocation() == null ? null : bean.getListLocation().buildVo();
 }
 public void populate(
     ims.vo.ValueObjectBeanMap map,
     ims.admin.vo.beans.ElectiveListHospitalConfigurationVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.casenotefolderlocation =
       bean.getCaseNoteFolderLocation() == null
           ? null
           : bean.getCaseNoteFolderLocation().buildVo(map);
   this.listlocation = bean.getListLocation() == null ? null : bean.getListLocation().buildVo(map);
 }