16 lines
		
	
	
		
			427 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			427 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.DAL.Logs.Contracts;
 | |
| using Microsoft.Extensions.DependencyInjection;
 | |
| 
 | |
| namespace Core.Blueprint.DAL.Logs.Configuration
 | |
| {
 | |
|     public static class LogExtensionConfiguration
 | |
|     {
 | |
|         public static IServiceCollection AddLogLayer(this IServiceCollection services)
 | |
|         {
 | |
|             services.AddScoped<IBlueprintSerilogLogger, BlueprintSerilogLogger>();
 | |
| 
 | |
|             return services;
 | |
|         }
 | |
|     }
 | |
| }
 | 
