throws Exception
{
UnitOfWork uow = assembler.module().newUnitOfWork( newUsecase( "Bootstrap data" ) );
try
{
SavingsAccountEntity savingsAccount = uow.newEntity( SavingsAccountEntity.class, SAVINGS_ACCOUNT_ID );
savingsAccount.increasedBalance(1000);
CheckingAccountEntity checkingAccount = uow.newEntity(CheckingAccountEntity.class, CHECKING_ACCOUNT_ID);
checkingAccount.increasedBalance(200);
// Create some creditor debt