public function __construct(DcaTools $objController, $strParent = null, array $arrFields = null)
 {
     parent::__construct($objController);
     $this->strParentDataContainer = $strParent;
     $this->arrFields = $arrFields;
     $this['ptables'] = array();
 }
 /**
  * @param DcaTools $controller
  * @param ModelInterface $model
  */
 public function __construct(DcaTools $controller, ModelInterface $model)
 {
     parent::__construct($controller);
     $this->model = $model;
 }
 /**
  * @param DcaTools $controller
  * @param $moduleName
  */
 public function __construct(DcaTools $controller, $moduleName)
 {
     parent::__construct($controller);
     $this->moduleName = $moduleName;
 }