Esempio n. 1
0
        public DataTable GetUserMenuData(string userId, string menuForApp, string menuType)
        {
            AppMenuDAL appMenu = new AppMenuDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start();
                DataTable dt = appMenu.GetUserMenuData(userId, menuForApp, menuType, db);
                db.Stop();

                return dt;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                appMenu = null;
            }
        }