Exemplo n.º 1
0
 public AddPlayerCommand(string name, IPlayerLibrary playerLibrary, List <string> players, bool added)
 {
     this.name          = name;
     this.playerLibrary = playerLibrary;
     this.players       = players;
     this.add           = added;
 }
Exemplo n.º 2
0
 public PlayerLibraryVM(IPlayerLibrary playerLibrary)
 {
     this.playerLibrary    = playerLibrary;
     this.CreateNewProfile = this.playerLibrary.CreateNewProfile(PlayerProfile.Name);
 }