Jean-Francois Leveque

Préimplémentation pour tests

......@@ -29,4 +29,6 @@ public interface AccountService {
* @return Account List
*/
List<Account> convertIndexedAccountsIntoAccounts(List<IndexedAccount> indexedAccounts);
public int reindexAllAccounts();
}
......
......@@ -62,4 +62,9 @@ public class AccountServiceDefault implements AccountService {
return new ArrayList<>();
}
@Override
public int reindexAllAccounts() {
return 0;
}
}
\ No newline at end of file
......