コード例 #1
0
 public ScreenCommand(
     ApplicationViewModel app,
     ScreenManager screenManager,
     Action<string> notificationHandler)
 {
     this.app = app;
     this.screenManager = screenManager;
     this.notificationHandler = notificationHandler;
 }
コード例 #2
0
ファイル: PoolCommand.cs プロジェクト: 27miller87/MultiMiner
 public PoolCommand(
     ApplicationViewModel app, 
     ScreenManager screenManager,
     Action<string> notificationHandler, 
     List<string> replBuffer)
 {
     this.app = app;
     this.screenManager = screenManager;
     this.notificationHandler = notificationHandler;
     this.replBuffer = replBuffer;
 }