Exemple #1
0
 public void SavePicPhotographer()
 {
     ((PictureViewModel)CurrentPicture).Photographer = PhotographersList.CurrentPhotographer;
     _bl.updatePicturePhotographer(new PictureModel(CurrentPicture));
     CurrentPicture = new PictureViewModel(_bl.getPicture(CurrentPicture.ID));
 }
Exemple #2
0
 public void updatePhotographer()
 {
     _bl.updatePhotographer(new PhotographerModel(PhotographersList.CurrentPhotographer));
     CurrentPicture = new PictureViewModel(_bl.getPicture(CurrentPicture.ID));
 }