예제 #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
 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();
        }