/// <summary>
 /// Removes a player from the team.
 /// Removes player salary from the team salary.
 /// </summary>
 /// <param name="player"></param>
 public void RemovePlayer(PlayerDto player)
 {
     player.Roster = false;
     Players.Remove(player);
 }