Beispiel #1
0
 public ExportSelectedQuantitiesPresenter(IExportSelectedQuantitiesView view, IQuantitySelectionPresenter quantitySelectionPresenter, IDialogCreator dialogCreator) : base(view)
 {
     _quantitySelectionPresenter = quantitySelectionPresenter;
     _dialogCreator = dialogCreator;
     AddSubPresenters(_quantitySelectionPresenter);
     View.AddSelectionView(_quantitySelectionPresenter.BaseView);
     _quantitySelectionPresenter.Description = AppConstants.Captions.ExportSelectedObservedDataDescription;
     _exportQuantitiesSelectionDTO           = new ExportQuantitiesSelectionDTO();
     _view.BindTo(_exportQuantitiesSelectionDTO);
     ViewChanged();
 }
Beispiel #2
0
 public void BindTo(ExportQuantitiesSelectionDTO exportQuantitiesSelectionDTO)
 {
     _screenBinder.BindToSource(exportQuantitiesSelectionDTO);
 }