public function load(ObjectManager $manager)
 {
     $data = $this->container->get('ilioscore.dataloader.curriculumInventoryExport')->getAll();
     foreach ($data as $arr) {
         $entity = new CurriculumInventoryExport();
         $entity->setId($arr['id']);
         $manager->persist($entity);
         $this->addReference('curriculumInventoryExports' . $arr['id'], $entity);
     }
     $manager->flush();
 }
 /**
  * @covers Ilios\CoreBundle\Entity\Session::__construct
  */
 public function testConstructor()
 {
     $this->assertNotEmpty($this->object->getCreatedAt());
 }