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