private void OKButton_Click(object sender, RoutedEventArgs e)
        {
            string sNgayRa = "";
            int iGioRa;
            int iPhutRa;
            int iNgayRa_So;
            int iThangRa;
            int iNamRa;

            if (!String.IsNullOrEmpty(rdpNgayRa.SelectedDate.ToString()))
                sNgayRa = rdpNgayRa.SelectedDate.Value.ToString("MM/dd/yyyy");
            iGioRa = int.Parse(cbxGioRa.Text.ToString());
            iPhutRa = int.Parse(cbxPhutRa.Text.ToString());
            iNgayRa_So = DateToNumberConverter.Date2Number(sNgayRa);
            iThangRa = DateToNumberConverter.Date2Month(sNgayRa);
            iNamRa = DateToNumberConverter.Date2Year(sNgayRa);

            HoaDonDichVuClient = new HoaDonDichVuSVCClient();
            HoaDonDichVuClient.HoaDonNgayRa_AddCompleted += new EventHandler<System.ComponentModel.AsyncCompletedEventArgs>(HoaDonDichVuClient_HoaDonNgayRa_AddCompleted);
            HoaDonDichVuClient.HoaDonNgayRa_AddAsync(HoaDonID, sNgayRa, iGioRa, iPhutRa, iNgayRa_So, iThangRa, iNamRa);
        }