public SessionTheatreTCISlotLiteVoBean(ims.scheduling.vo.SessionTheatreTCISlotLiteVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.tocomeintime =
       vo.getToComeInTime() == null
           ? null
           : (ims.framework.utils.beans.TimeBean) vo.getToComeInTime().getBean();
   this.appointment =
       vo.getAppointment() == null
           ? null
           : new ims.vo.RefVoBean(
               vo.getAppointment().getBoId(), vo.getAppointment().getBoVersion());
   this.status =
       vo.getStatus() == null ? null : (ims.vo.LookupInstanceBean) vo.getStatus().getBean();
 }