using System; namespace Quadarax.Foundation.Common.Log { public interface ILoggingProvider { bool Enabled { get; set; } void Log(SeverityEnum severity, int? code, string message, Exception e = null); } }