using System; namespace Core.Utility { public interface ILogSend { void SendError(string massge); void SendException(Exception e); } }