/**
  * @return bool
  */
 protected function fillObject()
 {
     $this->setValuesByPost();
     if (!$this->checkInput()) {
         return false;
     }
     $this->signature->setLastName($this->getInput('last_name'));
     $this->signature->setFirstName($this->getInput('first_name'));
     return true;
 }