16 lines
469 B
C#
16 lines
469 B
C#
using Core.Blueprint.Service.Domain.Entities;
|
|
using Core.Blueprint.Service.UseCases.GetSampleItems.Ports;
|
|
using Lib.Architecture.BuildingBlocks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.GetSampleItems.Adapter
|
|
{
|
|
public class GetSampleItemsPort : BasePresenter, IGetSampleItemsPort
|
|
{
|
|
public void Success(List<SqlSampleItemEntity> output)
|
|
{
|
|
ViewModel = new OkObjectResult(output);
|
|
}
|
|
}
|
|
}
|