protected virtual void OnAuctionStarted(AuctionEventArgs e) { var handler = this.AuctionStarted; if (handler != null) { handler(this, e); } }
protected virtual void OnAuctionEnded(AuctionEventArgs e) { var handler = this.AuctionEnded; if (handler != null) { handler(this, e); } }