public static void DeleteInstance() { if (instance != null) { instance = null; } }
public static HomeMenuViewModel GetInstance() { if (instance == null) { instance = new HomeMenuViewModel(); } return(instance); }