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