Ejemplo n.º 1
0
        public System.Data.DataTable InformacionRelAppSrv(int App_Id)
        {
            System.Data.DataTable Info        = new System.Data.DataTable();
            DLSoftware            odlSoftware = new DLSoftware();

            System.Data.DataSet ds = new System.Data.DataSet();

            ds = odlSoftware.InformacionRelAppSrv(App_Id);

            if (ds.Tables.Count > 0)
            {
                Info = ds.Tables[0];
            }
            else
            {
                Info = new System.Data.DataTable();
            }

            return(Info);
        }