9 lines
370 B
C#
9 lines
370 B
C#
using AMREZ.EOP.Contracts.DTOs.HumanResources.EmergencyContact;
|
|
using AMREZ.EOP.Contracts.DTOs.HumanResources.EmergencyContactAdd;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Applications.UseCases.HumanResources;
|
|
|
|
public interface IAddEmergencyContactUseCase
|
|
{
|
|
Task<EmergencyContactResponse?> ExecuteAsync(EmergencyContactAddRequest request, CancellationToken ct = default);
|
|
} |