public static frmRegistroIngreso ObtenerInstancia() { { if (Instancia == null || Instancia.IsDisposed == true) Instancia = new frmRegistroIngreso(); return Instancia; } }
public static frmRegistroIngreso ObtenerInstancia(Modelo_Entidades.USUARIO oUsu) { if (Instancia == null || Instancia.IsDisposed == true) Instancia = new frmRegistroIngreso(oUsu); return Instancia; }