public void populate(ims.vo.ValueObjectBeanMap map, ims.core.vo.WorkAllocationListVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.catsreferral =
       vo.getCatsReferral() == null
           ? null
           : new ims.vo.RefVoBean(
               vo.getCatsReferral().getBoId(), vo.getCatsReferral().getBoVersion());
 }
 public WorkAllocationListVoBean(ims.core.vo.WorkAllocationListVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.catsreferral =
       vo.getCatsReferral() == null
           ? null
           : new ims.vo.RefVoBean(
               vo.getCatsReferral().getBoId(), vo.getCatsReferral().getBoVersion());
 }
 public ims.core.vo.WorkAllocationListVo buildVo(ims.vo.ValueObjectBeanMap map) {
   ims.core.vo.WorkAllocationListVo vo = null;
   if (map != null) vo = (ims.core.vo.WorkAllocationListVo) map.getValueObject(this);
   if (vo == null) {
     vo = new ims.core.vo.WorkAllocationListVo();
     map.addValueObject(this, vo);
     vo.populate(map, this);
   }
   return vo;
 }