Add project files.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Core.Blueprint.Service.Domain.Dtos;
|
||||
using Core.Blueprint.Service.UseCases.GetSampleImage.Ports;
|
||||
using Lib.Architecture.BuildingBlocks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Core.Blueprint.Service.UseCases.GetSampleImage.Adapter
|
||||
{
|
||||
public class GetSampleImagePort : BasePresenter, IGetSampleImagePort
|
||||
{
|
||||
public void Success(SampleImageUrlDto output)
|
||||
{
|
||||
ViewModel = new OkObjectResult(output);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user