public WastefulStartCommand(IRepository repository,
                             SurvivorRepo gameRepository,
                             IWastefulDisplayNotification notification) : base(repository)
 {
     _gameRepository = gameRepository;
     _notification   = notification;
 }
Exemplo n.º 2
0
 public WastefulRankCommand(IRepository repository,
                            IWastefulDisplayNotification notification, IGameRepository gameRepository)
     : base(repository)
 {
     _notification   = notification;
     _gameRepository = gameRepository;
 }
Exemplo n.º 3
0
 public WastefulMoveCommand(IRepository repository,
                            IWastefulDisplayNotification notification) : base(repository)
 {
     _notification = notification;
 }