fix: update GetList method return type in IContractingPartyBankAccountsRepository

This commit is contained in:
MahanCh
2025-08-04 12:50:19 +03:30
parent 5e24071175
commit 08adccb2f1

View File

@@ -8,7 +8,7 @@ namespace Company.Domain.ContractingPartyBankAccountsAgg;
public interface IContractingPartyBankAccountsRepository:IRepository<long,ContractingPartyBankAccount>
{
Task<List<GetContractingPartyBankAccountViewModel>> GetList(ContractingPartyBankAccountSearchModel searchModel);
Task<GetContractingPartyBankAccountViewModel> GetList(ContractingPartyBankAccountSearchModel searchModel);
Task<List<string>> ContractingPartyOrAccountHolderNameSelectList(string search, string selected);
Task<List<string>> IBanSelectList(string search, string selected);