Пример #1
0
 /// <summary>
 /// Revises the state province.
 /// </summary>
 /// <param name="stateProvince">The state province.</param>
 public virtual void ReviseStateProvince( StateProvince stateProvince )
 {
     StateProvince = stateProvince;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CountyArea"/> class.
 /// </summary>
 /// <param name="stateProvince">The state province.</param>
 public CountyArea( StateProvince stateProvince )
 {
     _stateProvince = stateProvince;
 }
Пример #3
0
 /// <summary>
 /// Assigns the birth state province.
 /// </summary>
 /// <param name="birthStateProvince">The birth state province.</param>
 /// <returns>A PatientBirthInfoBuilder.</returns>
 public PatientBirthInfoBuilder WithBirthStateProvince(StateProvince birthStateProvince)
 {
     _birthStateProvince = birthStateProvince;
     return this;
 }
Пример #4
0
 /// <summary>
 /// Assigns the state province.
 /// </summary>
 /// <param name="stateProvince">The state province.</param>
 /// <returns>An AddressBuilder.</returns>
 public AddressBuilder WithStateProvince(StateProvince stateProvince)
 {
     _stateProvince = stateProvince;
     return this;
 }