Innovt Platform
Search Results for

    Show / Hide Table of Contents

    Class Address

    Represents an address entity.

    Inheritance
    object
    ValueObject
    Address
    Inherited Members
    ValueObject.Id
    ValueObject.Equals(object)
    ValueObject.GetHashCode()
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Innovt.Domain.Adresses
    Assembly: Innovt.Domain.dll
    Syntax
    public class Address : ValueObject

    Properties

    | Edit this page View Source

    City

    Gets or sets the city associated with the address.

    Declaration
    public City City { get; set; }
    Property Value
    Type Description
    City
    | Edit this page View Source

    CityId

    Gets or sets the ID of the associated city.

    Declaration
    public int CityId { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    Complement

    Gets or sets additional details or complement for the address.

    Declaration
    public string Complement { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Coordinate

    Gets or sets the coordinates of the address.

    Declaration
    public Coordinate Coordinate { get; set; }
    Property Value
    Type Description
    Coordinate
    | Edit this page View Source

    Description

    Gets or sets the description of the address.

    Declaration
    public string Description { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    IsDeleted

    Gets or sets a value indicating whether the address is marked as deleted.

    Declaration
    public bool IsDeleted { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    Neighborhood

    Gets or sets the neighborhood or area of the address.

    Declaration
    public string Neighborhood { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Number

    Gets or sets the number associated with the address.

    Declaration
    public string Number { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Street

    Gets or sets the street of the address.

    Declaration
    public string Street { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Type

    Gets or sets the type of address.

    Declaration
    public AddressType Type { get; set; }
    Property Value
    Type Description
    AddressType
    | Edit this page View Source

    TypeId

    Gets or sets the ID of the address type.

    Declaration
    public int TypeId { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    ZipCode

    Gets or sets the ZIP code of the address.

    Declaration
    public string ZipCode { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    Extensions.IsNull(object)
    Extensions.ToStringOrDefault(object)
    SimpleMapper.MapTo<T1>(object)
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX