adamsaghy commented on code in PR #5962:
URL: https://github.com/apache/fineract/pull/5962#discussion_r3434969871


##########
fineract-working-capital-loan/src/main/java/org/apache/fineract/portfolio/workingcapitalloan/repository/WorkingCapitalLoanTransactionAllocationRepository.java:
##########
@@ -18,7 +18,12 @@
  */
 package org.apache.fineract.portfolio.workingcapitalloan.repository;
 
+import java.util.Collection;
+import java.util.List;
 import 
org.apache.fineract.portfolio.workingcapitalloan.domain.WorkingCapitalLoanTransactionAllocation;
 import org.springframework.data.jpa.repository.JpaRepository;
 
-public interface WorkingCapitalLoanTransactionAllocationRepository extends 
JpaRepository<WorkingCapitalLoanTransactionAllocation, Long> {}
+public interface WorkingCapitalLoanTransactionAllocationRepository extends 
JpaRepository<WorkingCapitalLoanTransactionAllocation, Long> {
+
+    List<WorkingCapitalLoanTransactionAllocation> 
findByWcLoanTransaction_IdIn(Collection<Long> transactionIds);

Review Comment:
   I dont think we need underscore



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to