/**
  * Retrieve an existing record - static method: getUserContact()
  *
  *
  * Generated with the DalClassGenerator created by:
  * Zoran Hron <*****@*****.**>
  *
  * @param id
  * @param fetchmode = DB_FETCHMODE_OBJECT
  * @result object: UserContact
  **/
 public static function getUserContact($id, $fetchmode = DB_FETCHMODE_OBJECT)
 {
     // object self instance
     $instance = new self();
     // call dynamic method
     return $instance->get_UserContact($id, $fetchmode);
 }