16 lines
475 B
C#
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);
|
|
}
|
|
}
|
|
}
|