$repo = EntityManager::getInstance()->getRepository('callsheet');
$collection = $repo->findAll();
$result = $collection->forAll(function($key, $element) {
return $element->toJSON();
})->toArray();
return $result;