static void Main(string[] args) { NotificationCollection notificationCollection = new NotificationCollection(); NotificationBar notificationBar = new NotificationBar(notificationCollection); notificationBar.printNotifications(); Console.ReadKey(); }
public NotificationBar(NotificationCollection notification) { Notifications = notification; }