using AMREZ.EOP.Contracts.DTOs.HumanResources.EmployeeAddress; using AMREZ.EOP.Contracts.DTOs.HumanResources.EmployeeAddressAdd; namespace AMREZ.EOP.Abstractions.Applications.UseCases.HumanResources; public interface IAddEmployeeAddressUseCase { Task ExecuteAsync(EmployeeAddressAddRequest request, CancellationToken ct = default); }