public void loadDataForEditSystemUser(int systemUserId)
        {
            this.Text        = "Chỉnh sửa người dùng này";
            this.btnAdd.Text = "Cập nhật";

            SystemUserService systemUserService = new SystemUserService();

            systemUser = systemUserService.GetSystemUser(systemUserId);

            short  userType = systemUser.Type;
            string o        = cbUserType.Text;

            if (userType == BHConstant.USER_TYPE_ID1)
            {
                cbUserType.Text = BHConstant.USER_TYPE_NAME1;
            }
            else if (userType == BHConstant.USER_TYPE_ID2)
            {
                cbUserType.Text = BHConstant.USER_TYPE_NAME2;
            }
            else if (userType == BHConstant.USER_TYPE_ID3)
            {
                cbUserType.Text = BHConstant.USER_TYPE_NAME3;
            }

            if (systemUser != null)
            {
                txtName.Text        = systemUser.FullName;
                txtCode.Text        = systemUser.Username;
                txtCode.Enabled     = false;
                txtConfirmPass.Text = "";
                txtPass.Text        = "";
            }
        }
        public void loadDataForEditSystemUser(int systemUserId)
        {
            this.Text = "Chỉnh sửa người dùng này";
            this.btnAdd.Text = "Cập nhật";

            SystemUserService systemUserService = new SystemUserService();

            systemUser = systemUserService.GetSystemUser(systemUserId);

            short userType = systemUser.Type;
            string o = cbUserType.Text;
            if (userType == BHConstant.USER_TYPE_ID1)
            {
                cbUserType.Text = BHConstant.USER_TYPE_NAME1;
            }
            else if (userType == BHConstant.USER_TYPE_ID2)
            {
                cbUserType.Text = BHConstant.USER_TYPE_NAME2;
            }
            else if (userType == BHConstant.USER_TYPE_ID3)
            {
                cbUserType.Text = BHConstant.USER_TYPE_NAME3;
            }

            if (systemUser != null)
            {
                txtName.Text = systemUser.FullName ;
                txtCode.Text = systemUser.Username;
                txtCode.Enabled = false;
                txtConfirmPass.Text = "";
                txtPass.Text = "";
            }
        }