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