Table of Contents

Class AddressCommune

Namespace
XENBIT.ResQueServe.Core.Models
Assembly
RQS.Core.dll
public record AddressCommune : IAddressCommune, IAddressState, IEquatable<AddressCommune>
Inheritance
AddressCommune
Implements
Inherited Members

Properties

AddressPackageId

public int AddressPackageId { get; set; }

Property Value

int

CommuneId

public long CommuneId { get; set; }

Property Value

long

CommuneName

The name of the commune.

public required string CommuneName { get; set; }

Property Value

string

Country

The country to which this state belongs. The Country class encapsulates details like the country's name, its ISO codes, and other pertinent information.

public Country Country { get; set; }

Property Value

Country

StateId

public int StateId { get; set; }

Property Value

int

StateName

The name of the state.

public required string StateName { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

ToString(string, string?)

Returns a string that represents the current address based on the specified format.

public string ToString(string format, string? houseNumber = null)

Parameters

format string

Use "s" for short, the "l" format (long) includes additional address components. "td" is also available for "top-down".

houseNumber string

Place the house number inside the address, if applicable.

Returns

string

A string containing the address components based on the specified format.