private void btnClickDeletePrice_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
 {
     if (DialogResult.OK == XtraMessageBox.Show("Xác nhận xóa dữ liệu ?", "Thông báo", MessageBoxButtons.OKCancel))
     {
         int id = int.Parse(gridViewPrice.GetFocusedRowCellValue("Key").ToString());
         objService.Delete(id);
         loadDataGroup();
     }
 }