use of io.vertigo.commons.transaction.VTransactionManager in project vertigo by KleeGroup.
the class CreateTestDataBase method initMainStore.
public static void initMainStore() {
final VTransactionManager transactionManager = Home.getApp().getComponentSpace().resolve(VTransactionManager.class);
final TaskManager taskManager = Home.getApp().getComponentSpace().resolve(TaskManager.class);
// A chaque test on recrée la table famille
SqlUtil.execRequests(transactionManager, taskManager, getCreateMainStoreRequests(), "TK_INIT_MAIN", Optional.empty());
}
Aggregations