Exemplo n.º 1
0
 public MenuWriter(IWriteClass writer, IDeal deal, IPlayersHand playersHand, IShowPlayers showPlayer)
 {
     _writer      = writer;
     _deal        = deal;
     _playersHand = playersHand;
     _showPlayers = showPlayer;
 }
Exemplo n.º 2
0
 public PlayersHand(IWriteClass writer, IUserInput userInput)
 {
     _writer    = writer;
     _userInput = userInput;
 }
Exemplo n.º 3
0
 public UserInput(IWriteClass writer)
 {
     _writer = writer;
 }
Exemplo n.º 4
0
 public CreatePlayers(IWriteClass writer, IUserInput userInput)
 {
     _writer    = writer;
     _userInput = userInput;
 }
Exemplo n.º 5
0
 public ShowPlayers(IWriteClass writer)
 {
     _writer = writer;
 }
Exemplo n.º 6
0
 public Menu(IWriteClass writer, IMenuWriter menuWriter, IUserInput userInput)
 {
     _writer     = writer;
     _menuWriter = menuWriter;
     _userInput  = userInput;
 }