/// <summary> /// Copies a voting topic with different votes. /// </summary> public VotingTopic(VotingTopic copy, IEnumerable <Vote> votes) : this(copy.Topic, copy.IsComplete, votes) { }
/// <summary> /// Copies a voting topic with a different underlying topic. /// </summary> public VotingTopic(VotingTopic copy, Topic topic) : this(topic, copy.IsComplete, copy.Votes) { }