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