private Notification(NotificationType type, Gig gig) { Type = type; Gig = gig ?? throw new ArgumentNullException("gig"); DateTime = DateTime.Now; }
public static Notification GigCanceled(Gig gig) => new Notification(NotificationType.GigCanceled, gig);