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