Beispiel #1
0
 public static void Reset()
 {
     _instance = null;
 }
Beispiel #2
0
        public static UrlManager getInstance(IDataBase db)
        {
            if (_instance == null)
            {
                _instance = new UrlManager(db);
            }

            return _instance;
        }