@Override
 protected void prePut(Object model) {
   biz.storebiz.db.entity.product.ProductDepartment m =
       (biz.storebiz.db.entity.product.ProductDepartment) model;
   m.setCreationDate(slim3_creationDateAttributeListener.prePut(m.getCreationDate()));
   m.setDepartmentFormationDate(
       slim3_departmentFormationDateAttributeListener.prePut(m.getDepartmentFormationDate()));
 }
Пример #2
0
 @Override
 protected void prePut(Object model) {
   biz.storebiz.db.entity.customer.Customer m = (biz.storebiz.db.entity.customer.Customer) model;
   m.setCreationDate(slim3_creationDateAttributeListener.prePut(m.getCreationDate()));
   m.setCustomerLastModificationDate(
       slim3_customerLastModificationDateAttributeListener.prePut(
           m.getCustomerLastModificationDate()));
   m.setCustomerRegistrationDate(
       slim3_customerRegistrationDateAttributeListener.prePut(m.getCustomerRegistrationDate()));
 }