<?php
namespace App\Entity;
/**
* OperationSearch
*
*/
class OperationSearch
{
/**
* @var \TblPersonnel
*/
public $personnel;
/**
* @var \RefTypeOperationPaie
*/
public $typeOperation;
/**
* @var \RefGroupe
*/
public $groupe;
/**
* @var \Datetype
*/
public $dateDebut;
/**
* @var \Datetype
*/
public $dateFin;
/**
* @var \RefTypeOperationTravail
*/
public $typeOperationTravail;
function isVide() : bool {
if( $this->personnel or $this->groupe or $this->typeOperationTravail or $this->dateDebut or $this->dateFin){
return true;
}
return false;
}
}