private void barButtonItem25_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     frmLst_Services afrmLst_Services = new frmLst_Services();
     afrmLst_Services.Show();
 }
 private void btnLstService_ItemClick(object sender, ItemClickEventArgs e)
 {
     try
     {
         frmLst_Services afrmLst_Services = new frmLst_Services();
         afrmLst_Services.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show("frmMain.btnLstService_ItemClick\n" + ex.ToString(), "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
 public frmUpd_Services(frmLst_Services afrmLst_Services, int ID)
 {
     InitializeComponent();
     this.afrmLst_Services = afrmLst_Services;
     this.ID = ID;
 }
 private void bnViewSer_ItemClick(object sender, ItemClickEventArgs e)
 {
     frmLst_Services afrmServices = new frmLst_Services();
     afrmServices.ShowDialog();
 }
 public frmIns_Services(frmLst_Services afrmLst_Services)
 {
     InitializeComponent();
     this.afrmLst_Services = afrmLst_Services;
 }