Exemplo n.º 1
0
 private void btnCreate_Click(object sender, EventArgs e)
 {
     if (UserManagement.AllowCreate("UserGroup") == true && UserManagement.AllowCreate("Permissions") == true)
     {
         frmCreateUGroup frmCreate = new frmCreateUGroup();
         frmCreate.Show();
     }
     else
     {
         FlatMsgBox.Show("Bạn không có quyền tạo mới");
     }
 }
Exemplo n.º 2
0
 private void btnCreate_Click(object sender, EventArgs e)
 {
     if (UserManagement.AllowCreate("Category") == true)
     {
         frmCreateCategory frmCreate = new frmCreateCategory();
         frmCreate.Show();
     }
     else
     {
         FlatMsgBox.Show("Bạn không có quyền tạo mới");
     }
 }
Exemplo n.º 3
0
 private void btnCreate_Click(object sender, EventArgs e)
 {
     if (UserManagement.AllowCreate("ProductPrice") == true)
     {
         frmProductPriceDetail frmCreate = new frmProductPriceDetail();
         frmCreate.Show();
     }
     else
     {
         FlatMsgBox.Show("Bạn không có quyền tạo mới");
     }
 }