
Originally Posted by
djam
Think of an application that has a Model, View, Presenter and a Command.
What is the best way to pass this small/temp data to the View?
#1 - Conceptually, this small piece should be a part of the summary data in the Model... If I add it to the Model, how the View should get notified about the change?
#1a - Fire an event from Presenter once Command is done?
#1b -Watch for a data change in the View?
#2 Or, don't store this too "temporary" data to the Model (also makes sense), just pass it to the View via Event from the Presenter?