/**
* EM flush
*/
public function flush()
{
$this->getEntityManager()->flush();
}
/**
* EM persist
*
* @param ClientStatData $entity
*/
public function persist(ClientInstytutionStat $entity)
{
$this->getEntityManager()->persist($entity);
}