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