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