Beispiel #1
0
        public static string displayApps(String concern)
        {
            DataSet ds    = new DataSet();
            ReARObj _rear = new ReARObj();

            _rear.ConcernType = concern;

            try
            {
                ds.Tables.Add(_rear.displayApplication());
            }
            catch (Exception ex)
            {
            }
            return(ds.GetXml());
        }
Beispiel #2
0
        public static string displayAction(Int32 scopeid)
        {
            DataSet ds    = new DataSet();
            ReARObj _rear = new ReARObj();

            _rear.ScopeID = scopeid;

            try
            {
                ds.Tables.Add(_rear.displayAction());
            }
            catch (Exception ex)
            {
            }
            return(ds.GetXml());
        }