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