/**
  * @param $email
  * @param $password
  * @return bool
  */
 public function execute($email, $password)
 {
     return $this->authenticationService->authenticate($email, $password);
 }