Inheritance: extends PartKeepr\CoreBundle\Entity\BaseEntity
 public function load(ObjectManager $manager)
 {
     $distributor = new Distributor();
     $distributor->setName("TEST");
     $manager->persist($distributor);
     $manager->flush();
     $this->addReference("distributor.first", $distributor);
 }