public EzVoteResult(
     VoteResult result
     )
 {
     if (result.item != null)
     {
         Item = new EzBallot(result.item);
     }
 }
Exemplo n.º 2
0
 public EzCreateVoteResult(
     GetBallotResult result
     )
 {
     if (result.item != null)
     {
         Item = new EzBallot(result.item);
     }
     Body      = result.body;
     Signature = result.signature;
 }