17 lines
519 B
C#
17 lines
519 B
C#
using Core.Blueprint.Service.Domain.Dtos;
|
|
using Core.Blueprint.Service.UseCases.GetSampleImage.Ports;
|
|
using Core.Blueprint.Service.UseCases.GetUploadImageUrl.Ports;
|
|
using Lib.Architecture.BuildingBlocks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.GetUploadImageUrl.Adapter
|
|
{
|
|
public class GetUploadUrlPort : BasePresenter, IGetUploadUrlPort
|
|
{
|
|
public void Success(SampleImageUrlDto output)
|
|
{
|
|
ViewModel = new OkObjectResult(output);
|
|
}
|
|
}
|
|
}
|