Example #1
0
 protected virtual void OnQuoteChanged(EventArgs e)
 {
     //bubble up event to notify view models and ui that quotes have changed
     QuoteChanged?.Invoke(this, e);
 }
Example #2
0
 private void FireOnQuoteChanged(MtQuote quote)
 {
     QuoteChanged?.Invoke(this, quote);
 }