public void populate(
     ims.vo.ValueObjectBeanMap map, ims.core.vo.PatientForOutpatientBookingWorklistVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.name =
       vo.getName() == null ? null : (ims.core.vo.beans.PersonNameBean) vo.getName().getBean(map);
   this.dob =
       vo.getDob() == null
           ? null
           : (ims.framework.utils.beans.PartialDateBean) vo.getDob().getBean();
   this.identifiers = vo.getIdentifiers() == null ? null : vo.getIdentifiers().getBeanCollection();
 }