예제 #1
0
 private void btnThemChuyenXe_Click(object sender, EventArgs e)
 {
     if (principal.IsInRole("client  "))
     {
         MessageBox.Show("Bạn không có quyền thực hiện chức năng này");
     }
     if (principal.IsInRole("admin  "))
     {
         frmIUChuyen frm = new frmIUChuyen(dto_c, 2);
         frm.ShowDialog();
         LoaddgvChuyen();
     }
 }
예제 #2
0
 private void btnUpdateChuyenXe_Click(object sender, EventArgs e)
 {
     if (principal.IsInRole("client  "))
     {
         MessageBox.Show("Bạn không có quyền thực hiện chức năng này");
     }
     if (principal.IsInRole("admin  "))
     {
         if (dto_c.ID_Chuyen == -1)
         {
             MessageBox.Show("Bạn Chưa chọn chuyến cần thay đổi");
         }
         else
         {
             frmIUChuyen frm = new frmIUChuyen(dto_c, 1);
             frm.ShowDialog();
             LoaddgvChuyen();
         }
     }
 }