Add tenant services, change id by _id and include delete endpoint for all entities
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Core.Thalos.BuildingBlocks;
|
||||
using Lib.Architecture.BuildingBlocks;
|
||||
|
||||
namespace Core.Thalos.Application.UseCases.Tenants.Ports
|
||||
{
|
||||
public interface ITenantPort : IBasePort,
|
||||
ICommandSuccessPort<TenantAdapter>,
|
||||
ICommandSuccessPort<List<TenantAdapter>>,
|
||||
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
||||
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort,
|
||||
IBadRequestPort
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user