/// <summary>
 /// Raised the CurrentEntityChanged event.
 /// </summary>
 protected void OnCurrentEntityChanged()
 {
     if (CurrentEntityChanged != null)
     {
         TransactionHistoryArchiveDataGridViewEventArgs args = new TransactionHistoryArchiveDataGridViewEventArgs();
         args.TransactionHistoryArchive = _currentTransactionHistoryArchive;
         CurrentEntityChanged(this, args);
     }
 }
		/// <summary>
		/// Raised the CurrentEntityChanged event.
		/// </summary>
		protected void OnCurrentEntityChanged()
		{
			if (CurrentEntityChanged != null)
			{
				TransactionHistoryArchiveDataGridViewEventArgs args = new TransactionHistoryArchiveDataGridViewEventArgs();
				args.TransactionHistoryArchive = _currentTransactionHistoryArchive;
				CurrentEntityChanged(this, args); 
			}
		}