public static function getInstance()
 {
     if (!isset(self::$singleton)) {
         self::$singleton = new GuestService();
     }
     return self::$singleton;
 }