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