Class WarehouseContactInformation

Inheritance
System.Object
WarehouseContactInformation
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.Commerce.Inventory
Assembly: Mediachase.Commerce.dll
Version: 10.8.0
Syntax
public class WarehouseContactInformation : IWarehouseContactInformation

Constructors

WarehouseContactInformation()

Declaration
public WarehouseContactInformation()

WarehouseContactInformation(IWarehouseContactInformation)

Declaration
public WarehouseContactInformation(IWarehouseContactInformation copyFrom)
Parameters
Type Name Description
IWarehouseContactInformation copyFrom

Fields

FullNameFormatString

Declaration
protected const string FullNameFormatString = "{0} {1}"
Field Value
Type Description
System.String

Properties

City

Declaration
public string City { get; set; }
Property Value
Type Description
System.String

CountryCode

Declaration
public string CountryCode { get; set; }
Property Value
Type Description
System.String

CountryName

Declaration
public string CountryName { get; set; }
Property Value
Type Description
System.String

DaytimePhoneNumber

Declaration
public string DaytimePhoneNumber { get; set; }
Property Value
Type Description
System.String

Email

Declaration
public string Email { get; set; }
Property Value
Type Description
System.String

EveningPhoneNumber

Declaration
public string EveningPhoneNumber { get; set; }
Property Value
Type Description
System.String

FaxNumber

Declaration
public string FaxNumber { get; set; }
Property Value
Type Description
System.String

FirstName

Declaration
public string FirstName { get; set; }
Property Value
Type Description
System.String

FullName

Declaration
public string FullName { get; }
Property Value
Type Description
System.String

LastName

Declaration
public string LastName { get; set; }
Property Value
Type Description
System.String

Line1

Declaration
public string Line1 { get; set; }
Property Value
Type Description
System.String

Line2

Declaration
public string Line2 { get; set; }
Property Value
Type Description
System.String

MiddleName

Declaration
public string MiddleName { get; }
Property Value
Type Description
System.String

Organization

Declaration
public string Organization { get; set; }
Property Value
Type Description
System.String

PostalCode

Declaration
public string PostalCode { get; set; }
Property Value
Type Description
System.String

RegionCode

Declaration
public string RegionCode { get; set; }
Property Value
Type Description
System.String

RegionName

Declaration
public string RegionName { get; set; }
Property Value
Type Description
System.String

State

Declaration
public string State { get; set; }
Property Value
Type Description
System.String

Methods

IsSameAddress(CustomerAddress)

Declaration
public bool IsSameAddress(CustomerAddress address)
Parameters
Type Name Description
CustomerAddress address
Returns
Type Description
System.Boolean

IsSameAddress(OrderAddress)

Declaration
public bool IsSameAddress(OrderAddress address)
Parameters
Type Name Description
OrderAddress address
Returns
Type Description
System.Boolean

ToCustomerAddress()

Declaration
public CustomerAddress ToCustomerAddress()
Returns
Type Description
CustomerAddress

ToOrderAddress()

Declaration
public OrderAddress ToOrderAddress()
Returns
Type Description
OrderAddress

Implements