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