void PhongClient_Phong_GetItemCompleted(object sender, Phong_GetItemCompletedEventArgs e)
 {
     PhongInfo item = e.Result;
     txtPhong.Text = item.PhongName;
     txtTienNghi.Text = item.TienNghiName;
     txtSoGiuong.Text = item.SoNguoi.ToString();
     txtSoNguoi.Text = item.SoNguoi.ToString();
     LoadingPanel.IsBusy = false;
 }
 void Phong1Client_Phong_GetItemCompleted(object sender, Phong_GetItemCompletedEventArgs e)
 {
     PhongInfo Phong = e.Result;
     lblTuPhong.Text += " " + Phong.PhongName;
 }
 void PhongClient_Phong_GetItemCompleted(object sender, Phong_GetItemCompletedEventArgs e)
 {
     PhongInfo Phong = e.Result;
     txtSoGiuong.Text = Phong.SoGiuong.ToString();
     txtSoNguoi.Text = Phong.SoNguoi.ToString();
     txtTienNghi.Text = Phong.TienNghiName;
     lblDenPhong.Text = "Đến Phòng: " + Phong.PhongName;
     LoadingPanel.IsBusy = false;
 }
 void PhongClient_Phong_GetItemCompleted(object sender, Phong_GetItemCompletedEventArgs e)
 {
     PhongInfo Phong = e.Result;
     cbxLoaiPhong.SelectedValue = Phong.LoaiPhongID;
     txtTenPhong.Text = Phong.PhongName;
     cbxTienNghi.SelectedValue = Phong.TienNghiID;
     txtSoGiuong.Text = Phong.SoGiuong.ToString();
     txtSoNguoi.Text = Phong.SoNguoi.ToString();
 }