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