public void UpdateMenuSorting(ListBox groupWiseUserMenuListListBox, string parentMenuId) { AppMenuDAL appMenu = new AppMenuDAL(); try { LumexDBPlayer db = LumexDBPlayer.Start(true); appMenu.UpdateMenuSorting(groupWiseUserMenuListListBox, parentMenuId, db); db.Stop(); } catch (Exception) { throw; } finally { appMenu = null; } }