8 lines
267 B
C#
8 lines
267 B
C#
using AMREZ.EOP.Contracts.DTOs.HumanResources.EmploymentEnd;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Applications.UseCases.HumanResources;
|
|
|
|
public interface IEndEmploymentUseCase
|
|
{
|
|
Task<bool> ExecuteAsync(EmploymentEndRequest request, CancellationToken ct = default);
|
|
} |