示例#1
0
 /// <summary>
 /// Location constructor
 /// </summary>
 /// <param name="stateFIPSCode">The FIPS code of the state.</param>
 /// <param name="countyFIPSCode">The county code of the county within this state.</param>
 public Location(int stateFIPSCode, int countyFIPSCode)
 {
     arguments       = new LocationArguments();
     this.stateFIPS  = stateFIPSCode;
     this.countyFIPS = countyFIPSCode;
 }
示例#2
0
 /// <summary>
 /// Empty location constructor
 /// </summary>
 public Location()
 {
     arguments = new LocationArguments();
 }