using System;
public class Program
{
public static void Main()
var message = new PatientAdmitted();
// This is does not tell us the event we are processing, it tells us the variable name which is not helpfull
Console.WriteLine($"I handle the '" + nameof(message) + "' event");
// This is what we need in the logs as it tells us the event we are processing.
Console.WriteLine($"I handle the '" + message.GetType().Name + "' event");
}
public class PatientAdmitted{