/// <summary>
        /// When the user accepts a resume, make the mailbox menu visible again, archive the mail, and inform the game that a new employee needs to be added to the simulation.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="eventArgs"></param>
        private void MenuResumeOnAccepted(object sender, ResumeAcceptedEventArgs eventArgs)
        {
            menuMailbox.Visible = true;

            messageBox          = ControlFactory.CreateMessageBox(contentManager, MessageBoxType.Information, "Resume Accepted!", "Your new employee will begin working in the next 7 to 10 business days.");
            messageBox.Position = new Vector(MainGame.SCREEN_WIDTH_LOGICAL - messageBox.Width - 5, topToolboxTray.Height + 5);
            messageBox.Show(SimulationManager.SimulationTime);

            // TODO: change this to an event instead of calling a method which just fires an event?
            menuMailbox.ArchiveSelectedMailItem(sender);

            if (ResumeAccepted != null)
            {
                ResumeAccepted(sender, eventArgs);
            }
        }