namespace <%= client %>.<%= package %>.BusinessLogic.Logging
{
///
/// Interface for a log writer.
///
public interface ILogWriter
{
///
/// Write to the log.
///
/// The severity of the message.
/// A tag to prepend onto the message (generally the name of the calling class).
/// The message to log.
void Log(Severity severity, string tag, string message);
}
}