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