Esempio n. 1
0
 /// <summary>
 ///
 /// </summary>
 private void uxBindingSource_currentItemChanged(object sender, System.EventArgs e)
 {
     if (_TransactionHistoryArchive != null)
     {
         _TransactionHistoryArchive.Validate();
     }
 }
        private void OnTransactionHistoryArchiveBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
        {
            _currentTransactionHistoryArchive = uxTransactionHistoryArchiveBindingSource.Current as Entities.TransactionHistoryArchive;

            if (_currentTransactionHistoryArchive != null)
            {
                _currentTransactionHistoryArchive.Validate();
            }
            //_TransactionHistoryArchive.Validate();
            OnCurrentEntityChanged();
        }
		private void OnTransactionHistoryArchiveBindingSourceCurrentItemChanged(object sender, System.EventArgs e)
		{
			_currentTransactionHistoryArchive = uxTransactionHistoryArchiveBindingSource.Current as Entities.TransactionHistoryArchive;
			
			if (_currentTransactionHistoryArchive != null)
			{
				_currentTransactionHistoryArchive.Validate();
			}
			//_TransactionHistoryArchive.Validate();
			OnCurrentEntityChanged();
		}