/**
  * @return aeopPostCategoryList
  */
 public function execute()
 {
     $data = parent::execute();
     $categories = new aeopPostCategoryList();
     foreach ($data->aeopPostCategoryList as $category) {
         $categories->add(new aeopPostCategory($category));
     }
     return $categories;
 }
 /**
  * @return aeopAeOrder
  */
 public function execute()
 {
     $data = parent::execute();
     $order = new aeopAeOrder($data);
     return $order;
 }