Exemplo n.º 1
0
 public PerksCommand(
     ApplicationViewModel app,
     Action<string> notificationHandler)
 {
     this.app = app;
     this.notificationHandler = notificationHandler;
 }
Exemplo n.º 2
0
 public ScreenCommand(
     ApplicationViewModel app,
     ScreenManager screenManager,
     Action<string> notificationHandler)
 {
     this.app = app;
     this.screenManager = screenManager;
     this.notificationHandler = notificationHandler;
 }
Exemplo n.º 3
0
 public PoolCommand(
     ApplicationViewModel app, 
     ScreenManager screenManager,
     Action<string> notificationHandler, 
     List<string> replBuffer)
 {
     this.app = app;
     this.screenManager = screenManager;
     this.notificationHandler = notificationHandler;
     this.replBuffer = replBuffer;
 }
Exemplo n.º 4
0
 public SwitchAllCommand(ApplicationViewModel app)
 {
     this.app = app;
 }