using AMREZ.EOP.Contracts.DTOs.HumanResources.EmployeeBankAccount; using AMREZ.EOP.Contracts.DTOs.HumanResources.EmployeeBankAccountAdd; namespace AMREZ.EOP.Abstractions.Applications.UseCases.HumanResources; public interface IAddEmployeeBankAccountUseCase { Task ExecuteAsync(EmployeeBankAccountAddRequest request, CancellationToken ct = default); }