16 lines
		
	
	
		
			310 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			310 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Serilog.Context;
 | 
						|
 | 
						|
namespace MarcoBMS.Services.Service
 | 
						|
{
 | 
						|
    public interface ILoggingService
 | 
						|
    {
 | 
						|
        void LogInfo(string? message, params object[]? args);
 | 
						|
        void LogWarning(string? message, params object[]? args);
 | 
						|
        void LogError(string? message, params object[]? args);
 | 
						|
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 |