public function translatorFetch($offset = 0, $limit = 50, array $parameters = [])
 {
     $dataCollection = new TranslatorDataCollection();
     $collection = $this->fetch($offset, $limit, $parameters);
     if (0 < $collection->count()) {
         foreach ($collection as $entity) {
             $dataCollection->add($this->factoryTranslatorByNative($entity)->translateTo());
         }
     }
     return $dataCollection;
 }