public DataTable SaveMenu() { AppMenuDAL appMenu = new AppMenuDAL(); try { LumexDBPlayer db = LumexDBPlayer.Start(true); DataTable dt = appMenu.SaveMenu(this, db); db.Stop(); return(dt); } catch (Exception) { throw; } finally { appMenu = null; } }