remove cerberos by thalos
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Core.Thalos.Adapters;
|
||||
using Core.Thalos.Application.UseCases.Modules.Ports;
|
||||
using Lib.Architecture.BuildingBlocks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Core.Thalos.Application.UseCases.Modules.Adapter
|
||||
{
|
||||
public class ModulePort : BasePresenter, IModulePort
|
||||
{
|
||||
public void Success(ModuleAdapter output)
|
||||
{
|
||||
ViewModel = new OkObjectResult(output);
|
||||
}
|
||||
public void Success(List<ModuleAdapter> output)
|
||||
{
|
||||
ViewModel = new OkObjectResult(output);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user