/**
  * get single Factuurmaand instance from a DOMElement
  *
  * @param DOMElement $node
  * @return Factuurmaand
  */
 public static function fromDOMElement(DOMElement $node)
 {
     $o = new Factuurmaand();
     $o->assignByHash(self::domNodeToHash($node, self::$FIELD_NAMES, self::$DEFAULT_VALUES, self::$FIELD_TYPES));
     $o->notifyPristine();
     return $o;
 }
 /**
  * Fetch Factuurmaand which references this Overlegbasis. Will return null in case reference is invalid.
  * `overlegbasis`.`factuur_code` -> `factuurmaand`.`id`
  *
  * @param PDO $db a PDO Database instance
  * @param array $sort array of DSC instances
  * @return Factuurmaand
  */
 public function fetchFactuurmaand(PDO $db, $sort = null)
 {
     $filter = array(Factuurmaand::FIELD_ID => $this->getFactuurCode());
     $result = Factuurmaand::findByFilter($db, $filter, true, $sort);
     return empty($result) ? null : $result[0];
 }
 /**
  * Fetch Factuurmaand's which this Verzekering references.
  * `verzekering`.`id` -> `factuurmaand`.`mutualiteit`
  *
  * @param PDO $db a PDO Database instance
  * @param array $sort array of DSC instances
  * @return Factuurmaand[]
  */
 public function fetchFactuurmaandCollection(PDO $db, $sort = null)
 {
     $filter = array(Factuurmaand::FIELD_MUTUALITEIT => $this->getId());
     return Factuurmaand::findByFilter($db, $filter, true, $sort);
 }