public void TestPollConversion() { var rawPoll = new Poll { Name = "Poll name", Title = "Poll title", TotalVotes = 1234 }; var poll = new BGGThings.Poll(rawPoll); Assert.AreEqual("Poll name", poll.Name); Assert.AreEqual("Poll title", poll.Title); Assert.AreEqual(1234, poll.Votes); }
public Poll(Raw.Things.Poll rawPoll) { Name = rawPoll.Name; Title = rawPoll.Title; Votes = rawPoll.TotalVotes; }