Exemple #1
0
        }        // End editHomeCheckDate

        /// <summary>
        /// CREATED BY: Matt Deaton
        /// DATE CREATED: 2020-04-07
        /// APPROVED BY: Steve Coonrod
        ///
        /// Method used for updating Interview Notes
        ///
        /// </summary>
        /// <remarks>
        /// UPDATED BY:
        /// UPDATED:
        /// CHANGE:
        /// </remarks>
        private void editInterviewNotes()
        {
            string oldNotes = _applicant.InterviewNotes.ToString();
            string newNotes = txtInterviewNotes.Text.ToString();

            try
            {
                _applicantManager.EditInterviewNotes(_applicant.ApplicantID, oldNotes, newNotes);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message + "\n\n" + ex.InnerException.Message);
            }
        }        // End editInterviewNotes()