Usecase usecase = UsecaseBuilder.newUsecase( "Populate Random Cargos" );
UnitOfWork uow = module.newUnitOfWork( usecase );
CargoAggregateRoot cargos = uow.get( CargoAggregateRoot.class, CargoAggregateRoot.CARGOS_ID );
Query<Location> allLocations = uow.newQuery( module.newQueryBuilder( Location.class ) );
int locationSize = (int) allLocations.count();
// Make array for selection of location with random index
final List<Location> locationList = new ArrayList<>();
for( Location location : allLocations )