public void InformacionGeneralInstancia(int AppSB_Id, ref System.Data.DataTable Info) { DLSoftware odlSoftware = new DLSoftware(); System.Data.DataSet ds = new System.Data.DataSet(); ds = odlSoftware.InformacionGeneralInstancia(AppSB_Id); if (ds.Tables.Count > 0) { Info = ds.Tables[0]; } else { Info = new System.Data.DataTable(); } }