Exemplo n.º 1
0
 // constructor requires both fields to be set
 public Week(Location location, double winningAmount)
 {
     this.Location = location;
     this.Winning = winningAmount;
 }
Exemplo n.º 2
0
 public Week()
 {
     Location = new Location();
     Winning = 0;
 }