/**
  * 
  * @return \App_Model_User
  */
 public function getUserById()
 {
     $this->_activeDog = App_Model_Dog::fetchActiveDogByUserId($this->getId());
     $this->_allDogs = App_Model_Dog::fetchOtherDogsByUserId($this->getId());
     return $this;
 }