@Override
protected void configure() {
bind( IPlayersService.class ).to( PlayersServiceImpl.class ).in( ServletScopes.SESSION );
bindInterceptor( Matchers.any(), Matchers.annotatedWith( Transactional.class ), new TransactionalInterceptor() );
log.info( String.format( "%s initialized", ServicesModule.class.getSimpleName() ) );
}