Esempio n. 1
0
        private void FillActions()
        {
            ContextManager       manager = new ContextManager();
            SecurityActionsLogic actions = new SecurityActionsLogic(manager);

            if (RolesCB.SelectedIndex >= 0)
            {
                int categoryId = Convert.ToInt32(CategoriesCB.SelectedValue);
                ActionsGV.DataSource = actions.GetByCategory(categoryId);
            }
            else
            {
                ActionsGV.DataSource = actions.GetAll();
            }


            //ContextManager manager = new ContextManager();
            DataGridViewCheckBoxCell ch1         = new DataGridViewCheckBoxCell();
            SecurityRoleActionsLogic roleActions = new SecurityRoleActionsLogic(manager);

            foreach (DataGridViewRow row in ActionsGV.Rows)
            {
                ch1 = (DataGridViewCheckBoxCell)row.Cells["AllowAction"];
                int  actionId    = Convert.ToInt32(row.Cells["ID"].Value.ToString());
                int  roleId      = Convert.ToInt32(RolesCB.SelectedValue);
                bool actionAllow = roleActions.Exists(roleId, actionId, true);
                ch1.Value = actionAllow;
            }



            manager.CloseContext();
        }
Esempio n. 2
0
        private void SaveBt_Click(object sender, EventArgs e)
        {
            ContextManager           manager = new ContextManager();
            SecurityRoleActionsLogic actions = new SecurityRoleActionsLogic(manager);
            int roleId     = Convert.ToInt32(RolesCB.SelectedValue);
            int categoryId = Convert.ToInt32(CategoriesCB.SelectedValue);

            foreach (DataGridViewRow r in ActionsGV.Rows)
            {
                DataGridViewCheckBoxCell chk = r.Cells["AllowAction"] as DataGridViewCheckBoxCell;
                int  actionId = Convert.ToInt32(r.Cells["ID"].Value.ToString());
                bool allow    = false;
                if (Convert.ToBoolean(chk.Value) == true)
                //MessageBox.Show("this cell checked" + r.Cells["ID"].Value.ToString());
                {
                    allow = true;
                }
                else
                {
                    allow = false;
                }

                SecurityRoleAction actionExists = actions.Get(roleId, actionId);
                if (actionExists == null)
                {
                    actions.Create(roleId, actionId, allow);
                }
                else
                {
                    actions.Update(actionExists.ID, roleId, actionId, allow);
                }
            }
            manager.Save();
            manager.CloseContext();
            MsgL.Text = "Дані збережено.";
        }