<?php
namespace App\Entity;
/**
* OperationFermSearch
*
*/
class OperationFermSearch
{
/**
* @var \RefOperations
*/
public $typeOperations;
/**
* @var \TblParcelle
*/
public $parcelle;
/**
* @var \TblPersonnel
*/
public $personnel;
/**
* @var \RefMaterials
*/
public $materials;
/**
* @var \RefStatut
*/
public $statut;
/**
* @var \Datetype
*/
public $dateDebut;
/**
* @var \Datetype
*/
public $dateFin;
function isVide() : bool {
if( $this->typeOperations or $this->parcelle or $this->personnel or $this->materials or $this->statut or $this->dateDebut or $this->dateFin){
return true;
}
return false;
}
}