Hi,
Is it a good programming practice to use the mediator pattern for trivial messages (show an image viewer window etc.) ?
Mediator.NotifyColleagues(Messages.DISPLAY_IMAGE, image);
instead of just using
frmImageViewer.Show(image);
I use the mediator program in my program a lot and was wondering how much is too much.
Regards,
Seb