}
private PhotographerUni_1_1_1_M populatePhotographer()
{
PhotographerUni_1_1_1_M p = new PhotographerUni_1_1_1_M();
p.setPhotographerId(photographerId);
p.setPhotographerName("Amresh");
AlbumUni_1_1_1_M album = new AlbumUni_1_1_1_M("album_1", "My Phuket Vacation", "Went Phuket with friends");
album.addPhoto(new PhotoUni_1_1_1_M("photo_1", "One beach", "On beach with friends"));
album.addPhoto(new PhotoUni_1_1_1_M("photo_2", "In Hotel", "Chilling out in room"));
album.addPhoto(new PhotoUni_1_1_1_M("photo_3", "At Airport", "So tired"));
p.setAlbum(album);
return p;
}