private void OnUserTypeBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
        {
            _currentUserType = uxUserTypeBindingSource.Current as BLL.UserType;

            if (_currentUserType != null)
            {
                _currentUserType.Validate();
            }
            //_UserType.Validate();
            OnCurrentEntityChanged();
        }