namespace rosette_api
{
public class Address: IAddress
{
public Address(string house = null, string houseNumber = null, string road = null, string unit = null, string level = null, string staircase = null, string entrance = null, string suburb = null, string cityDistrict = null, string city = null, string island = null, string stateDistrict = null, string state = null, string countryRegion = null, string country = null, string worldRegion = null, string postCode = null, string poBox = null)
{
this.house = house;
this.houseNumber = houseNumber;
this.road = road;
this.unit = unit;
this.level = level;
this.staircase = staircase;
this.entrance = entrance;
this.suburb = suburb;
this.cityDistrict = cityDistrict;
this.city = city;
this.island = island;
this.stateDistrict = stateDistrict;
this.state = state;
this.countryRegion = countryRegion;
this.country = country;
this.worldRegion = worldRegion;
this.postCode = postCode;
this.poBox = poBox;
}
/// house
///
/// Getter, Setter for the house
///
///
public string house { get; set; }
/// houseNumber
///
/// Getter, Setter for the houseNumber
///
///
public string houseNumber { get; set; }
/// road
///
/// Getter, Setter for the road
///
///
public string road { get; set; }
/// unit
///
/// Getter, Setter for the unit
///
///
public string unit { get; set; }
/// level
///
/// Getter, Setter for the level
///
///
public string level { get; set; }
/// staircase
///
/// Getter, Setter for the staircase
///
///
public string staircase { get; set; }
/// entrance
///
/// Getter, Setter for the entrance
///
///
public string entrance { get; set; }
/// suburb
///
/// Getter, Setter for the suburb
///
///
public string suburb { get; set; }
/// cityDistrict
///
/// Getter, Setter for the cityDistrict
///
///
public string cityDistrict { get; set; }
/// city
///
/// Getter, Setter for the city
///
///
public string city { get; set; }
/// island
///
/// Getter, Setter for the island
///
///
public string island { get; set; }
/// stateDistrict
///
/// Getter, Setter for the stateDistrict
///
///
public string stateDistrict { get; set; }
/// state
///
/// Getter, Setter for the state
///
///
public string state { get; set; }
/// countryRegion
///
/// Getter, Setter for the countryRegion
///
///
public string countryRegion { get; set; }
/// country
///
/// Getter, Setter for the country
///
///
public string country { get; set; }
/// worldRegion
///
/// Getter, Setter for the worldRegion
///
///
public string worldRegion { get; set; }
/// postCode
///
/// Getter, Setter for the postCode
///
///
public string postCode { get; set; }
/// poBox
///
/// Getter, Setter for the poBox
///
///
public string poBox { get; set; }
/// is this address fielded?
///
public bool fielded()
{
return true;
}
}
}