コード例 #1
0
 public ImageTabVM(PictureBL pictureBL, PhotographerBL photographerBL)
 {
     _pictureBL                 = pictureBL;
     _photographerBL            = photographerBL;
     _pictureBL.ImageTabVM      = this;
     _photographerBL.ImageTabVM = this;
 }
コード例 #2
0
 public ListPhotographerVM(EditPhotographerVM editPhotographerVM, PhotographerBL photographerBL)
 {
     _editPhotographerVM = editPhotographerVM;
     _photographerBL     = photographerBL;
     _isselected         = false;
     _photographerBL.ListPhotographerVM = this;
     _photographerBL.LoadDatabase();
 }
コード例 #3
0
 public TaskbarVM(ListPhotographerVM listPhotographerVM, EditPhotographerVM addPhotographerVM, PictureBL pictureBL, PhotographerBL photographerBL, ExportVM exportVM)
 {
     _listPhotographerVM = listPhotographerVM;
     _editPhotographerVM = addPhotographerVM;
     _exportVM           = exportVM;
     _pictureBL          = pictureBL;
     _photographerBL     = photographerBL;
 }