Skip to content

Instantly share code, notes, and snippets.

View karelkral's full-sized avatar

Karel Kral karelkral

View GitHub Profile
// https://stackoverflow.com/questions/55203279/c-sharp-coding-assessment-need-help-understanding-specs
using System;
public interface INotification
{
void Send(string message, object payLoad);
}
public class Email : INotification
{