private void labelNotifications_Click(object sender, EventArgs e) { FormNotifications notifications = new FormNotifications(Department.Finance); notifications.ReceiveMessages(); notifications.Show(); }
private void lblNotification_Click(object sender, EventArgs e) { FormNotifications salesNotification = new FormNotifications(Department.Sales); salesNotification.ReceiveMessages(); salesNotification.Show(); }