Пример #1
0
 public void populate(ims.vo.ValueObjectBeanMap map, ims.core.vo.ConsentGivenVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.consentgiven = vo.getConsentGiven();
   this.dateconsentgiven =
       vo.getDateConsentGiven() == null
           ? null
           : (ims.framework.utils.beans.DateBean) vo.getDateConsentGiven().getBean();
 }
Пример #2
0
 public ConsentGivenVoBean(ims.core.vo.ConsentGivenVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.consentgiven = vo.getConsentGiven();
   this.dateconsentgiven =
       vo.getDateConsentGiven() == null
           ? null
           : (ims.framework.utils.beans.DateBean) vo.getDateConsentGiven().getBean();
 }