16 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.Service.Domain.Dtos;
 | |
| using Core.Blueprint.Service.UseCases.GetSampleImage.Ports;
 | |
| using Lib.Architecture.BuildingBlocks;
 | |
| using Microsoft.AspNetCore.Mvc;
 | |
| 
 | |
| namespace Core.Blueprint.Service.UseCases.GetSampleImage.Adapter
 | |
| {
 | |
|     public class GetSampleImagePort : BasePresenter, IGetSampleImagePort
 | |
|     {
 | |
|         public void Success(SampleImageUrlDto output)
 | |
|         {
 | |
|             ViewModel = new OkObjectResult(output);
 | |
|         }
 | |
|     }
 | |
| }
 | 
