| | |
| | | this.interviewContent.customContent =''; |
| | | } |
| | | |
| | | addInterview() { |
| | | const appointmentInformation: ToInformAppointment = { |
| | | appointmentId: this.client.id, |
| | | email : this.client?.email, |
| | | interviewDate: this.interviewContent.interviewTime, |
| | | message : this.interviewTxt, |
| | | phone : this.client?.phone, |
| | | }; |
| | | appointmentService.informAppointment(appointmentInformation).then((_) => { |
| | | this.isShowSuccessAlert = true ; |
| | | }); |
| | | } |
| | | addInterview() { |
| | | const appointmentInformation: ToInformAppointment = { |
| | | appointmentId: this.client?.id || 0, |
| | | email: this.client?.email || '', |
| | | interviewDate: this.interviewContent.interviewTime, |
| | | message: this.interviewTxt, |
| | | phone: this.client?.phone || '', |
| | | }; |
| | | appointmentService.informAppointment(appointmentInformation).then((_) => { |
| | | this.isShowSuccessAlert = true; |
| | | }); |
| | | } |
| | | |
| | | |
| | | closeAllDialog() { |
| | | this.isShowSuccessAlert = false ; |