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