public WastefulStartCommand(IRepository repository,
                             SurvivorRepo gameRepository,
                             IWastefulDisplayNotification notification) : base(repository)
 {
     _gameRepository = gameRepository;
     _notification   = notification;
 }
Beispiel #2
0
 public WastefulRankCommand(IRepository repository,
                            IWastefulDisplayNotification notification, IGameRepository gameRepository)
     : base(repository)
 {
     _notification   = notification;
     _gameRepository = gameRepository;
 }
 public WastefulMoveCommand(IRepository repository,
                            IWastefulDisplayNotification notification) : base(repository)
 {
     _notification = notification;
 }