Source code for Jason Dolinger’s Model-View-ViewModel presentation
Some time back, I posted Jason’s presentation on Model-View-ViewModel and dependency injection with WPF and Unity (if you haven’t checked it out yet, you really should… the stuff there is good for Silverlight, too). There were numerous requests to take a look at the source code. It’s now available here.


December 11th, 2008 at 10:25 pm
Awesome! Thanks!
January 13th, 2009 at 8:17 am
I just downloaded the source code and was browsing through the code. I noticed that in the RandomQuoteSource class in the method GenerateAndPublishQuotes, at the end a call is being made to the event QuoteArrived directly. But the method OnQuoteArrived is checking for any subscribers to the event and then calling the event, but this method itself is never called.
I think that in the GenerateAndPublishQuotes the call should be to the OnQuoteArrived and not the event directly.
Just thought I’d mention this.
Meile