public function getStatement()
 {
     $statement = parent::getStatement();
     $statement->applyFilter('translate', $this->getTable());
     return $statement;
 }
 public function __construct(Repository $repository)
 {
     $this->repository = $repository;
     $this->statement = $repository->getStatement();
 }