//Linhting - Tự động thêm khách vào nhóm public int AutoInsertCustomerToGroup(int IDCustomer, int IDCustomerGroup, DateTime From) { try { CustomerGroups_Customers aCustomerGroups_Customers = new CustomerGroups_Customers(); aCustomerGroups_Customers = this.Select_ByIDCustomer_ByIDCustomerGroup(IDCustomer, IDCustomerGroup); if (aCustomerGroups_Customers != null) { return this.Select_ByIDCustomer_ByIDCustomerGroup(IDCustomer, IDCustomerGroup).ID; } else { aCustomerGroups_Customers.IDCustomer = IDCustomer; aCustomerGroups_Customers.IDCustomerGroup = IDCustomerGroup; aCustomerGroups_Customers.FromDate = From; aCustomerGroups_Customers.Disable = false; return this.Insert(aCustomerGroups_Customers); } } catch (Exception ex) { return 0; throw new Exception("CustomersBO.AutoInsertCustomer:" + ex.ToString()); } }
public int Delete(CustomerGroups_Customers customerGroups_Customers) { try { aDatabaseDA.CustomerGroups_Customers.Remove(customerGroups_Customers); return aDatabaseDA.SaveChanges(); } catch (Exception ex) { throw new Exception("CustomerGroups_CustomersBO.Delete:" + ex.ToString()); } }
// Ngoc public int InsertCustomerIntoCustomerGroup_ByIDBookingRs(int IDCustomer, int IDBookingRs) { // Add customer vao group CustomerGroupsBO aCustomerGroupsBO = new CustomerGroupsBO(); CustomerGroups aCustomerGroups = new CustomerGroups(); aCustomerGroups = aCustomerGroupsBO.Select_ByIDBookingR(IDBookingRs); CustomerGroups_CustomersBO aCustomerGroups_CustomersBO = new CustomerGroups_CustomersBO(); //Kiem tra xe khach do da co trong custome group chua CustomerGroups_Customers aCustomerGroups_Customers = new CustomerGroups_Customers(); aCustomerGroups_Customers = aCustomerGroups_CustomersBO.Select_ByIDCustomer_ByIDCustomerGroup(IDCustomer, aCustomerGroups.ID); if (aCustomerGroups_Customers == null) { aCustomerGroups_Customers = new CustomerGroups_Customers(); Customers aCustomers = (new CustomersBO()).Select_ByID(IDCustomer); aCustomerGroups_Customers.IDCustomer = IDCustomer; aCustomerGroups_Customers.IDCustomerGroup = aCustomerGroups.ID; aCustomerGroups_Customers.Name = aCustomerGroups.Name + "_" + aCustomers.Name + "_" + aCustomers.Identifier1 + "_" + DateTime.Now.ToShortDateString(); return aCustomerGroups_CustomersBO.Insert(aCustomerGroups_Customers); } else { return 0; } }
public int InsertCustomerIntoCustomerGroup(int IDCustomer, int IDCustomerGroup) { // Add customer vao group CustomerGroupsBO aCustomerGroupsBO = new CustomerGroupsBO(); CustomerGroups aCustomerGroups = new CustomerGroups(); aCustomerGroups = aCustomerGroupsBO.Select_ByID(IDCustomerGroup); CustomerGroups_CustomersBO aCustomerGroups_CustomersBO = new CustomerGroups_CustomersBO(); CustomerGroups_Customers aCustomerGroups_Customers = new CustomerGroups_Customers(); aCustomerGroups_Customers = aCustomerGroups_CustomersBO.Select_ByIDCustomer_ByIDCustomerGroup(IDCustomer, IDCustomerGroup); if (aCustomerGroups_Customers == null) { Customers aCustomers = (new CustomersBO()).Select_ByID(IDCustomer); aCustomerGroups_Customers.IDCustomer = IDCustomer; aCustomerGroups_Customers.IDCustomerGroup = aCustomerGroups.ID; aCustomerGroups_Customers.Name = aCustomerGroups.Name + "_" + aCustomers.Name + "_" + aCustomers.Identifier1 + "_" + DateTime.Now.ToShortDateString(); return aCustomerGroups_CustomersBO.Insert(aCustomerGroups_Customers); } else return 0; }
//-----------------Add New --------------------------------- public int Insert(CustomerGroups_Customers customerGroups_Customers) { try { aDatabaseDA.CustomerGroups_Customers.Add(customerGroups_Customers); aDatabaseDA.SaveChanges(); return customerGroups_Customers.ID; } catch (Exception ex) { throw new Exception("CustomerGroups_CustomersBO.Insert:" + ex.ToString()); } }
//hiennv private void btnApply_Click(object sender, EventArgs e) { try { if (this.CheckDataBeforeApply() == true) { CustomerGroups_CustomersBO aCustomerGroupsCustomersBO = new CustomerGroups_CustomersBO(); if (aListRemove.Count > 0) { foreach (Customers item in aListRemove) { CustomerGroups_Customers aCustomerGroups_Customers = aCustomerGroupsCustomersBO.Select_ByIDCustomer_ByIDCustomerGroup(item.ID, IDCustomerGroup); if (aCustomerGroups_Customers != null) { aCustomerGroupsCustomersBO.Delete(item.ID, IDCustomerGroup); } } if (this.afrmTsk_CheckIn_Goverment_Step2 != null) { this.afrmTsk_CheckIn_Goverment_Step2.LoadIDCustomers(); } else if (this.afrmTsk_CheckIn_Group_Step2 != null) { this.afrmTsk_CheckIn_Group_Step2.LoadIDCustomers(); } else if (this.afrm_Tsk_CheckIn_Customer_Step2 != null) { this.afrm_Tsk_CheckIn_Customer_Step2.LoadCustomers(); } else if (this.afrmTsk_Booking_Step2 != null) { this.afrmTsk_Booking_Step2.LoadIDCustomers(); } else if (this.afrmTsk_CheckInGoverment_ForRoomBooking_Step2 != null) { this.afrmTsk_CheckInGoverment_ForRoomBooking_Step2.LoadIDCustomers(); this.afrmTsk_CheckInGoverment_ForRoomBooking_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrmTsk_CheckInGroup_ForRoomBooking_Step2 != null) { this.afrmTsk_CheckInGroup_ForRoomBooking_Step2.LoadIDCustomers(); this.afrmTsk_CheckInGroup_ForRoomBooking_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrmTsk_CheckInCustomer_ForRoomBooking_Step2 != null) { this.afrmTsk_CheckInCustomer_ForRoomBooking_Step2.LoadCustomers(); this.afrmTsk_CheckInCustomer_ForRoomBooking_Step2.CallBackIDCustomer(aListAdd[0].ID); } } if (aListAdd.Count > 0) { CustomerGroups_Customers aCustomerGroups_Customers = new CustomerGroups_Customers(); foreach (Customers item in aListAdd) { aCustomerGroups_Customers = aCustomerGroupsCustomersBO.Select_ByIDCustomer_ByIDCustomerGroup(item.ID, IDCustomerGroup); if (aCustomerGroups_Customers != null) { string name = (NameCustomerGroup + "_" + item.Name).Length > 150 ? (NameCustomerGroup + "_" + item.Name).Substring(0, 150) : (NameCustomerGroup + "_" + item.Name); aCustomerGroups_Customers.Name = name; aCustomerGroups_Customers.IDCustomer = item.ID; aCustomerGroups_Customers.IDCustomerGroup = IDCustomerGroup; aCustomerGroupsCustomersBO.Insert(aCustomerGroups_Customers); } } if (this.afrmTsk_CheckIn_Goverment_Step2 != null) { this.afrmTsk_CheckIn_Goverment_Step2.LoadIDCustomers(); this.afrmTsk_CheckIn_Goverment_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrmTsk_CheckIn_Group_Step2 != null) { this.afrmTsk_CheckIn_Group_Step2.LoadIDCustomers(); this.afrmTsk_CheckIn_Group_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrm_Tsk_CheckIn_Customer_Step2 != null) { this.afrm_Tsk_CheckIn_Customer_Step2.LoadCustomers(); this.afrm_Tsk_CheckIn_Customer_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrmTsk_Booking_Step2 != null) { this.afrmTsk_Booking_Step2.LoadIDCustomers(); this.afrmTsk_Booking_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrmTsk_CheckInGoverment_ForRoomBooking_Step2 != null) { this.afrmTsk_CheckInGoverment_ForRoomBooking_Step2.LoadIDCustomers(); this.afrmTsk_CheckInGoverment_ForRoomBooking_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrmTsk_CheckInGroup_ForRoomBooking_Step2 != null) { this.afrmTsk_CheckInGroup_ForRoomBooking_Step2.LoadIDCustomers(); this.afrmTsk_CheckInGroup_ForRoomBooking_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (this.afrmTsk_CheckInCustomer_ForRoomBooking_Step2!= null) { this.afrmTsk_CheckInCustomer_ForRoomBooking_Step2.LoadCustomers(); this.afrmTsk_CheckInCustomer_ForRoomBooking_Step2.CallBackIDCustomer(aListAdd[0].ID); } else if (afrmTsk_BookingHall_Goverment != null) { afrmTsk_BookingHall_Goverment.CallBackIDCustomer(aListSelectCustomers); } else if (afrmTsk_BookingHall_Group != null) { afrmTsk_BookingHall_Group.CallBackIDCustomer(aListSelectCustomers); } else if (afrmTsk_BookingHall_Customer != null) { afrmTsk_BookingHall_Customer.CallBackIDCustomer(aListSelectCustomers); } else if (afrmTsk_UpdBooking != null) { afrmTsk_UpdBooking.CallBackIDCustomer(aListSelectCustomers); } } this.Close(); MessageBox.Show("Thực hiện thành công!", "Thông báo ", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception ex) { MessageBox.Show("frmAddListCustomerToCustomerGroups.btnApply_Click\n" + ex.ToString(), "Error ", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
//Hiennv 26/11/2014 Viet lai phuong thuc checkInForRoomBooking public bool NewCheckInForRoomBooking(CheckInEN aCheckInEN) { try { CustomersBO aCustomersBO = new CustomersBO(); List<Customers> aListCustomersTemp = aCustomersBO.Select_All(); BookingRoomsBO aBookingRoomsBO = new BookingRoomsBO(); List<BookingRooms> aListBookingRoomTemp = aBookingRoomsBO.Select_All(); int IDBookingRooms = 0; int IDCompany = 0; int IDCustomerGroup = 0; int IDCustomer = 0; int Result = 0; string customerType = string.Empty; if (aCheckInEN.CustomerType == 0) { customerType = "Tất cả loại khác"; } else if (aCheckInEN.CustomerType == 1) { customerType = "Khách nhà nước"; } else if (aCheckInEN.CustomerType == 2) { customerType = "Khách đoàn"; } else if (aCheckInEN.CustomerType == 3) { customerType = "Khách lẻ"; } else if (aCheckInEN.CustomerType == 4) { customerType = "Khách vãng lai"; } else if (aCheckInEN.CustomerType == 5) { customerType = "Khách bộ ngoại giao"; } else { customerType = string.Empty; } #region Them moi cong ty khi cong ty chua co if (aCheckInEN.IDCompany > 0) { IDCompany = aCheckInEN.IDCompany; } else { CompaniesBO aCompaniesBO = new CompaniesBO(); Companies aCompanies = new Companies(); if (aCheckInEN.NameCompany.Length > 250) { aCompanies.Name = aCheckInEN.NameCompany.Substring(0, 250); } else { aCompanies.Name = aCheckInEN.NameCompany; } aCompanies.TaxNumberCode = string.Empty; aCompanies.Address = string.Empty; aCompanies.Type = aCheckInEN.CustomerType; aCompanies.Status = 1; aCompanies.Disable = false; IDCompany = aCompaniesBO.Insert(aCompanies); } #endregion #region Them moi nhom vao trong cong ty CustomerGroupsBO aCustomerGroupsBO = new CustomerGroupsBO(); CustomerGroups aCustomerGroups; aCustomerGroups = aCustomerGroupsBO.Select_ByIDCompanyAndIDCustomerGroup(IDCompany, aCheckInEN.IDCustomerGroup); if (aCustomerGroups == null) { aCustomerGroups = new CustomerGroups(); string nameGroup = "[" + customerType + "][" + aCheckInEN.NameCompany + "][" + DateTime.Now.ToString() + "]"; aCustomerGroups.IDCompany = IDCompany; if (nameGroup.Length > 250) { aCustomerGroups.Name = nameGroup.Substring(0, 250); } else { aCustomerGroups.Name = nameGroup; } aCustomerGroups.Type = 1; aCustomerGroups.Status = 1; aCustomerGroups.Disable = false; IDCustomerGroup = aCustomerGroupsBO.Insert(aCustomerGroups); } else { IDCustomerGroup = aCheckInEN.IDCustomerGroup; } #endregion string subject = "[" + customerType + "][" + aCheckInEN.NameCompany + "][" + DateTime.Now.ToString() + "]"; BookingRsBO aBookingRsBO = new BookingRsBO(); BookingRs aBookingRs = aBookingRsBO.Select_ByID(aCheckInEN.IDBookingR); if (aBookingRs != null) { aBookingRs.CreatedDate = DateTime.Now; aBookingRs.CustomerType = aCheckInEN.CustomerType; aBookingRs.BookingType = aCheckInEN.BookingType; if (subject.Length > 250) { aBookingRs.Subject = subject.Substring(0, 250); } else { aBookingRs.Subject = subject; } aBookingRs.IDCustomerGroup = IDCustomerGroup; aBookingRs.IDCustomer = aCheckInEN.IDCustomer; aBookingRs.IDSystemUser = aCheckInEN.IDSystemUser; aBookingRs.PayMenthod = aCheckInEN.PayMenthod; aBookingRs.StatusPay = aCheckInEN.StatusPay; aBookingRs.BookingMoney = aCheckInEN.BookingMoney; aBookingRs.ExchangeRate = aCheckInEN.ExchangeRate; aBookingRs.Level = 0;// de mac dinh hien tai chua dung den aBookingRs.Note = string.Empty; aBookingRs.Description = string.Empty; aBookingRs.DatePay = aCheckInEN.CheckOutPlan; aBookingRs.DateEdit = aCheckInEN.CheckInActual; aBookingRs.Status = aCheckInEN.Status; aBookingRs.Type = aCheckInEN.Type; aBookingRs.Disable = aCheckInEN.Disable; aBookingRsBO.Update(aBookingRs); } //========================================================== BookingRooms aBookingRooms; BookingRoomsMembers aBookingRoomsMembers; for (int i = 0; i < aCheckInEN.aListRoomMembers.Count; i++) { List<BookingRooms> aListBookingRoom = aListBookingRoomTemp.Where(r => r.ID == aCheckInEN.aListRoomMembers[i].IDBookingRooms).ToList(); if (aListBookingRoom.Count > 0) { aBookingRooms = new BookingRooms(); aBookingRooms = aListBookingRoom[0]; aBookingRooms.IDBookingR = aCheckInEN.IDBookingR; aBookingRooms.CodeRoom = aCheckInEN.aListRoomMembers[i].RoomCode; aBookingRooms.PercentTax = 10; aBookingRooms.CostRef_Rooms = aCheckInEN.aListRoomMembers[i].RoomCostRef; aBookingRooms.Cost = aCheckInEN.aListRoomMembers[i].RoomCostRef; aBookingRooms.CheckInPlan = aCheckInEN.CheckInActual; aBookingRooms.CheckInActual = aCheckInEN.CheckInActual; aBookingRooms.CheckOutPlan = aCheckInEN.CheckOutPlan; aBookingRooms.CheckOutActual = aCheckInEN.CheckOutActual; aBookingRooms.StartTime = aCheckInEN.CheckInActual; aBookingRooms.EndTime = aCheckInEN.CheckOutPlan; aBookingRooms.BookingStatus = 1; aBookingRooms.Type = 3; //Tính CheckIn sớm và CheckOut muộn aBookingRooms.Status = aCheckInEN.Status; aBookingRooms.PriceType = "G1"; aBookingRoomsBO.Update(aBookingRooms); IDBookingRooms = aCheckInEN.aListRoomMembers[i].IDBookingRooms; } else { aBookingRooms = new BookingRooms(); aBookingRooms.IDBookingR = aCheckInEN.IDBookingR; aBookingRooms.CodeRoom = aCheckInEN.aListRoomMembers[i].RoomCode; aBookingRooms.PercentTax = 10; aBookingRooms.CostRef_Rooms = aCheckInEN.aListRoomMembers[i].RoomCostRef; aBookingRooms.Cost = aCheckInEN.aListRoomMembers[i].RoomCostRef; aBookingRooms.CheckInPlan = aCheckInEN.CheckInActual; aBookingRooms.CheckInActual = aCheckInEN.CheckInActual; aBookingRooms.CheckOutPlan = aCheckInEN.CheckOutPlan; aBookingRooms.CheckOutActual = aCheckInEN.CheckOutActual; aBookingRooms.StartTime = aCheckInEN.CheckInActual; aBookingRooms.EndTime = aCheckInEN.CheckOutPlan; aBookingRooms.BookingStatus = 1; aBookingRooms.Type = 3; //Tính CheckIn sớm và CheckOut muộn aBookingRooms.Status = aCheckInEN.Status; aBookingRooms.PriceType = "G1"; //add new bookingRoom IDBookingRooms = aBookingRoomsBO.Insert(aBookingRooms); } //----------------------------------------------------------- aBookingRoomsMembers = new BookingRoomsMembers(); aBookingRoomsMembers.IDBookingRoom = IDBookingRooms; BookingRoomsMembersBO aBookingRoomsMembersBO = new BookingRoomsMembersBO(); for (int ii = 0; ii < aCheckInEN.aListRoomMembers[i].ListCustomer.Count; ii++) { Customers aCustomers; List<Customers> aListCustomers = aListCustomersTemp.Where(c => c.ID == aCheckInEN.aListRoomMembers[i].ListCustomer[ii].ID).ToList(); if (aListCustomers.Count > 0) { IDCustomer = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].ID; aCustomers = aListCustomers[0]; aCustomers.Name = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Name; aCustomers.Identifier1 = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Identifier1; aCustomers.Birthday = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Birthday; aCustomers.Gender = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Gender; aCustomers.Tel = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Tel; aCustomers.Nationality = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Nationality; aCustomersBO.Update(aCustomers); } else { aCustomers = new Customers(); aCustomers.Name = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Name; aCustomers.Identifier1 = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Identifier1; aCustomers.Birthday = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Birthday; aCustomers.Gender = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Gender; aCustomers.Tel = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Tel; aCustomers.Nationality = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Nationality; //Them moi khach hang IDCustomer = aCustomersBO.Insert(aCustomers); } aBookingRoomsMembers.IDCustomer = IDCustomer; aBookingRoomsMembers.PurposeComeVietnam = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].PurposeComeVietnam; aBookingRoomsMembers.DateEnterCountry = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].DateEnterCountry; aBookingRoomsMembers.EnterGate = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].EnterGate; aBookingRoomsMembers.TemporaryResidenceDate = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].TemporaryResidenceDate; aBookingRoomsMembers.LimitDateEnterCountry = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].LimitDateEnterCountry; aBookingRoomsMembers.Organization = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Organization; aBookingRoomsMembers.LeaveDate = aCheckInEN.aListRoomMembers[i].ListCustomer[ii].LeaveDate; //add new bookingRoomMember aBookingRoomsMembersBO.Insert(aBookingRoomsMembers); #region them nguoi vao trong customergroup_customer string nameCustomerGroup_customer = "[" + customerType + "][" + aCheckInEN.aListRoomMembers[i].ListCustomer[ii].Name + "]"; CustomerGroups_CustomersBO aCustomerGroups_CustomersBO = new CustomerGroups_CustomersBO(); CustomerGroups_Customers aCustomerGroups_Customers = new CustomerGroups_Customers(); if (nameCustomerGroup_customer.Length > 150) { aCustomerGroups_Customers.Name = nameCustomerGroup_customer.Substring(0, 150); } else { aCustomerGroups_Customers.Name = nameCustomerGroup_customer; } aCustomerGroups_Customers.Type = 1; aCustomerGroups_Customers.Status = 1; aCustomerGroups_Customers.Disable = false; aCustomerGroups_Customers.FromDate = DateTime.Now; aCustomerGroups_Customers.ToDate = DateTime.Now; aCustomerGroups_Customers.IDCustomer = IDCustomer; aCustomerGroups_Customers.IDCustomerGroup = IDCustomerGroup; aCustomerGroups_CustomersBO.Insert(aCustomerGroups_Customers); #endregion // dung de cap nhap lai nguoi dai dien khi dat phong if (aCheckInEN.aListRoomMembers[i].ListCustomer[ii].PepoleRepresentative == true) { aBookingRsBO = new BookingRsBO(); aBookingRs = new BookingRs(); aBookingRs = aBookingRsBO.Select_ByID(aCheckInEN.IDBookingR); if (aBookingRs != null) { aBookingRs.IDCustomer = IDCustomer; Result = aBookingRsBO.Update(aBookingRs); } } else { if (ii == (aCheckInEN.aListRoomMembers[i].ListCustomer.Count - 1)) { if (Result == 0) { aBookingRsBO = new BookingRsBO(); aBookingRs = new BookingRs(); aBookingRs = aBookingRsBO.Select_ByID(aCheckInEN.IDBookingR); if (aBookingRs != null) { aBookingRs.IDCustomer = IDCustomer; aBookingRsBO.Update(aBookingRs); } } } } } } return true; } catch (Exception ex) { return false; } }
private void btnApply_Click(object sender, EventArgs e) { try { CustomerGroups_CustomersBO aCustomerGroupsCustomersBO = new CustomerGroups_CustomersBO(); if (aListRemove.Count > 0) { foreach (Customers item in aListRemove) { List<CustomerGroups_Customers> count = aCustomerGroupsCustomersBO.Select_ByIDCustomer_ByIDCustomerGroup(item.ID, IDCustomerGroup); if (count.Count > 0) { aCustomerGroupsCustomersBO.Delete(item.ID, IDCustomerGroup); } } } if (aListAdd.Count > 0) { foreach (Customers item in aListAdd) { List<CustomerGroups_Customers> list = aCustomerGroupsCustomersBO.Select_ByIDCustomer_ByIDCustomerGroup(item.ID, IDCustomerGroup); if (list.Count < 1) { CustomerGroups_Customers aCustomerGroups_Customers = new CustomerGroups_Customers(); string name = (NameCustomerGroup + "_" + item.Name).Length > 150 ? (NameCustomerGroup + "_" + item.Name).Substring(0, 250) : (NameCustomerGroup + "_" + item.Name); aCustomerGroups_Customers.Name = name; aCustomerGroups_Customers.IDCustomer = item.ID; aCustomerGroups_Customers.IDCustomerGroup = IDCustomerGroup; aCustomerGroupsCustomersBO.Insert(aCustomerGroups_Customers); } } } if (afrmTsk_BookingHall_Goverment != null) { afrmTsk_BookingHall_Goverment.CallBackIDCustomer(aListSelectCustomers); } if (afrmTsk_BookingHall_Group != null) { afrmTsk_BookingHall_Group.CallBackIDCustomer(aListSelectCustomers); } if (afrmTsk_BookingHall_Customer != null) { afrmTsk_BookingHall_Customer.CallBackIDCustomer(aListSelectCustomers); } if (afrmTsk_UpdBooking != null) { afrmTsk_UpdBooking.CallBackIDCustomer(aListSelectCustomers); } MessageBox.Show("Thực hiện thành công!", "Thông báo ", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } catch (Exception ex) { MessageBox.Show("frmAddListCustomerToCustomerGroups.btnApply_Click\n" + ex.ToString(), "Error ", MessageBoxButtons.OK, MessageBoxIcon.Error); } }