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