// This function will be called when the app pool has problem public async Task Notify(string message) { await notification.ActOnNotification(message); }
public void Notify(INotification notification, string message) { _notification = notification; _notification.ActOnNotification(message); }