public MenuWriter(IWriteClass writer, IDeal deal, IPlayersHand playersHand, IShowPlayers showPlayer) { _writer = writer; _deal = deal; _playersHand = playersHand; _showPlayers = showPlayer; }
public PlayersHand(IWriteClass writer, IUserInput userInput) { _writer = writer; _userInput = userInput; }
public UserInput(IWriteClass writer) { _writer = writer; }
public CreatePlayers(IWriteClass writer, IUserInput userInput) { _writer = writer; _userInput = userInput; }
public ShowPlayers(IWriteClass writer) { _writer = writer; }
public Menu(IWriteClass writer, IMenuWriter menuWriter, IUserInput userInput) { _writer = writer; _menuWriter = menuWriter; _userInput = userInput; }