private void OnShiftBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
        {
            _currentShift = uxShiftBindingSource.Current as Entities.Shift;

            if (_currentShift != null)
            {
                _currentShift.Validate();
            }
            //_Shift.Validate();
            OnCurrentEntityChanged();
        }
		private void OnShiftBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
		{
			_currentShift = uxShiftBindingSource.Current as Entities.Shift;
			
			if (_currentShift != null)
			{
				_currentShift.Validate();
			}
			//_Shift.Validate();
			OnCurrentEntityChanged();
		}