Пример #1
0
 protected virtual void OnAuctionStarted(AuctionEventArgs e)
 {
     var handler = this.AuctionStarted;
     if (handler != null)
     {
         handler(this, e);
     }
 }
Пример #2
0
        protected virtual void OnAuctionEnded(AuctionEventArgs e)
        {
            var handler = this.AuctionEnded;

            if (handler != null)
            {
                handler(this, e);
            }
        }