//NÚT THÊM
        private void btnThemMoi_Click(object sender, RoutedEventArgs e)
        {
            DonViTinhThemPresentation wpf = new DonViTinhThemPresentation();

            wpf._ThemDonViTinh += new EventHandler(ThemDonViTinh);
            wpf.ShowDialog();
        }
        //PHƯƠNG THỨC THÊM ĐƠN VỊ TÍNH
        void ThemDonViTinh(object sender, EventArgs e)
        {
            #region 1. Lấy thông tin
            DonViTinhThemPresentation wpf  = (DonViTinhThemPresentation)sender;
            DonViTinhPublic           _dvt = wpf._dvt;
            #endregion

            #region 2. Lưu vào csdl
            if (DonViTinhBusiness.ThemDonViTinh(_dvt))
            {
                LoadDataToDataGrid();
            }
            else
            {
                MessageBox.Show("Thêm mới Đơn vị tính thất bại");
            }
            #endregion
        }