/// <summary>
        /// Author          Date        Comment
        /// BONGVX                      Sua thong tin user
        /// </summary>
        void actionMenuUsers_PressEdit(object sender, EventArgs e)
        {
            String  value  = "" + gridViewUser.GetFocusedRowCellValue("UserId");
            Account objAcc = new Account()
            {
                UserId = int.Parse(value),
            };

            if (objAcc.UserId > 0)
            {
                frmStanUsers ofrmStanUsers = new frmStanUsers(mAccount, objAcc.UserId);
                ofrmStanUsers.ShowDialog();
            }
            else
            {
                MessageBox.Show("Hãy chọn người dùng cần cập nhật", "Thông báo");
            }
            DisplayListUsers();
        }
        /// <summary>
        /// Author          Date        Comment
        /// BONGVX                      Them thong tin user
        /// </summary>
        void actionMenuUsers_PressNew(object sender, EventArgs e)
        {
            List <Account> lstAcc = new List <Account>();

            lstAcc = mAccountBiLL.getElements();
            frmStanUsers ofrmStanUsers = new frmStanUsers(mAccount);

            ofrmStanUsers.ShowDialog();
            List <Account> lstAccNow = mAccountBiLL.getElements();

            if (lstAcc.Count < lstAccNow.Count)
            {
                DialogResult h = MessageBox.Show("Bạn có muốn thiết lập quyền cho người dùng mới?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
                if (h == DialogResult.Yes)
                {
                    this.Controls.Clear();
                    Account newAccount = new Account();
                    newAccount = lstAccNow.LastOrDefault();
                    UseControls.uQuanLyUser oUQuanLyUser = new uQuanLyUser(mAccount, newAccount.UserId);
                    this.Controls.Add(oUQuanLyUser);
                }
            }
            DisplayListUsers();
        }