7 lines
		
	
	
		
			193 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			193 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace ApplicationLayer.InfrastructureServicesInterfaces;
 | |
| 
 | |
| public interface IUserIdProvider
 | |
| {
 | |
|     /// Returns identifier of authenticated user who sent the request
 | |
|     Guid GetUserId();
 | |
| } |