main
1using System.Text;
2using System.Windows.Forms;
3using gorilla.commons.utility;
4
5namespace momoney.presentation.presenters
6{
7 public class NotificationPresenter : Notification
8 {
9 public void notify(params NotificationMessage[] messages)
10 {
11 var builder = new StringBuilder();
12 messages.each(x => builder.AppendLine(x));
13 MessageBox.Show(builder.ToString(), "Ooops...", MessageBoxButtons.OK);
14 }
15 }
16}