OEModule\PASAPI\resources\Patient::validate PHP Method

validate() public method

As a primary resource (i.e. mapped to external resource) we need to ensure we have an id for tracking the resource in the system.
public validate ( ) : boolean
return boolean
    public function validate()
    {
        if (!$this->id) {
            $this->addError('Resource ID required');
        }
        return parent::validate();
    }