private void OnJobCandidateBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
        {
            _currentJobCandidate = uxJobCandidateBindingSource.Current as Entities.JobCandidate;

            if (_currentJobCandidate != null)
            {
                _currentJobCandidate.Validate();
            }
            //_JobCandidate.Validate();
            OnCurrentEntityChanged();
        }
		private void OnJobCandidateBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
		{
			_currentJobCandidate = uxJobCandidateBindingSource.Current as Entities.JobCandidate;
			
			if (_currentJobCandidate != null)
			{
				_currentJobCandidate.Validate();
			}
			//_JobCandidate.Validate();
			OnCurrentEntityChanged();
		}