* @param pictureStorage the place where profile pictures are stored; used to get a profile picture URL if the member's profile picture is set
*/
@Inject
public JdbcProfileRepository(JdbcTemplate jdbcTemplate, FileStorage pictureStorage) {
this.jdbcTemplate = jdbcTemplate;
this.pictureUrlFactory = new PictureUrlFactory(pictureStorage);
profileMapper = new ProfileMapper();
}