Beispiel #1
0
        public string[] GetDashboard()
        {
            IBucketListData bld = null;

            string[] results = null;

            try
            {
                bld     = new BucketListData(Utilities.GetDbSetting());
                results = bld.GetDashboard();
            }
            catch (Exception e)
            {
                bld.LogMsg("Error: " + e.Message + ", trace: " + e.StackTrace.ToString());
            }

            return(results);
        }