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