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 ExecuteAsync(EmergencyContactAddRequest request, CancellationToken ct = default); }