コード例 #1
0
 private void roleCreation_Click(object sender, EventArgs e)
 {
     try
     {
         frmCreateSecurityGroups frmCrtSecuGrou = new frmCreateSecurityGroups(dbl); //Create an object and send a datalayer object in the constructor.
         frmCrtSecuGrou.Show();
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #2
0
ファイル: userManagement.cs プロジェクト: AlphaGeek509/RBAC
 private void roleCreation_Click(object sender, EventArgs e)
 {
     try
     {
         frmCreateSecurityGroups frmCrtSecuGrou = new frmCreateSecurityGroups(dbl); //Create an object and send a datalayer object in the constructor.
         frmCrtSecuGrou.Show();
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #3
0
ファイル: Form1.cs プロジェクト: AlphaGeek509/RBAC
 private void button3_Click(object sender, EventArgs e)
 {
     frmCreateSecurityGroups frmCrtSecuGrou = new frmCreateSecurityGroups(dbl);
     frmCrtSecuGrou.Show();
 }
コード例 #4
0
ファイル: Form1.cs プロジェクト: AlphaGeek509/RBAC
        private void button3_Click(object sender, EventArgs e)
        {
            frmCreateSecurityGroups frmCrtSecuGrou = new frmCreateSecurityGroups(dbl);

            frmCrtSecuGrou.Show();
        }