public void Handle(ReportCreationStartedEvent reportStartedEvent)
 {
     _view.DisplayNotification(PKSimConstants.UI.ReportCreationStarted,
                               PKSimConstants.UI.ReportCreationStartedMessage(reportStartedEvent.ReportFullPath), string.Empty);
 }
 public abstract void Handle(ReportCreationStartedEvent eventToHandle);
Esempio n. 3
0
 public override void Handle(ReportCreationStartedEvent reportStartedEvent)
 {
     _view.DisplayNotification(AppConstants.Captions.ReportCreationStarted,
                               AppConstants.Captions.ReportCreationStartedMessage(reportStartedEvent.ReportFullPath), string.Empty);
 }
Esempio n. 4
0
 public void Handle(ReportCreationStartedEvent eventToHandle)
 {
     _numberOfReportsBeingCreated++;
     updateReportInfo();
 }
Esempio n. 5
0
 public override void Handle(ReportCreationStartedEvent eventToHandle)
 {
 }