public static void SetInstance(SiteUrls anInstance) { if (anInstance != null) instance = anInstance; }
public static SiteUrls GetSiteUrls() { if (instance == null) { lock (lockHelper) { if (instance == null) { instance = new SiteUrls(); } } } return instance; }