Core.Blueprint.Service/Core.Blueprint.Service.UseCases/CreateSampleImage/Adapter/CreateSampleImagePort.cs
Sergio Matias Urquin b2635193dc Add project files.
2025-04-29 18:44:41 -06:00

16 lines
475 B
C#

using Core.Blueprint.Service.Domain.Entities;
using Core.Blueprint.Service.UseCases.CreateSampleImage.Ports;
using Lib.Architecture.BuildingBlocks;
using Microsoft.AspNetCore.Mvc;
namespace Core.Blueprint.Service.UseCases.CreateSampleImage.Adapter
{
public class CreateSampleImagePort : BasePresenter, ICreateSampleImagePort
{
public void Success(SqlSampleItemEntity output)
{
ViewModel = new OkObjectResult(output);
}
}
}