using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.App.Services { /// /// NLog服务 /// public interface ILogService { void Debug(string msg); void Error(string msg); void Fatal(string msg); void Info(string msg); void Warn(string msg); } }