Add project files.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user