16 lines
		
	
	
		
			471 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			471 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.Service.Domain.Entities;
 | |
| using Core.Blueprint.Service.UseCases.DeleteSampleItem.Ports;
 | |
| using Lib.Architecture.BuildingBlocks;
 | |
| using Microsoft.AspNetCore.Mvc;
 | |
| 
 | |
| namespace Core.Blueprint.Service.UseCases.DeleteSampleItem.Adapter
 | |
| {
 | |
|     public class DeleteSampleItemPort : BasePresenter, IDeleteSampleItemPort
 | |
|     {
 | |
|         public void Success(SqlSampleItemEntity output)
 | |
|         {
 | |
|             ViewModel = new OkObjectResult(output);
 | |
|         }
 | |
|     }
 | |
| }
 | 
