23 lines
613 B
C#
23 lines
613 B
C#
using Core.Blueprint.Service.Domain.Entities;
|
|
using Core.Blueprint.Service.UseCases.GetSampleItems.Ports;
|
|
using Core.Blueprint.Service.UseCases.GetSecret.Ports;
|
|
using Lib.Architecture.BuildingBlocks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.GetSecret.Adapter
|
|
{
|
|
public class GetSecretPort : BasePresenter, IGetSecretPort
|
|
{
|
|
|
|
public void Success(SecretEntity output)
|
|
{
|
|
ViewModel = new OkObjectResult(output);
|
|
}
|
|
}
|
|
}
|