Testing.CustomerAddress.CreateCustomerAddress C# (CSharp) Method

CreateCustomerAddress() public static method

Create a new CustomerAddress object.
public static CreateCustomerAddress ( global customerID, global addressID, global addressTypeID, global rowguid, global modifiedDate ) : CustomerAddress
customerID global Initial value of the CustomerID property.
addressID global Initial value of the AddressID property.
addressTypeID global Initial value of the AddressTypeID property.
rowguid global Initial value of the rowguid property.
modifiedDate global Initial value of the ModifiedDate property.
return CustomerAddress
        public static CustomerAddress CreateCustomerAddress(global::System.Int32 customerID, global::System.Int32 addressID, global::System.Int32 addressTypeID, global::System.Guid rowguid, global::System.DateTime modifiedDate)
        {
            CustomerAddress customerAddress = new CustomerAddress();
            customerAddress.CustomerID = customerID;
            customerAddress.AddressID = addressID;
            customerAddress.AddressTypeID = addressTypeID;
            customerAddress.rowguid = rowguid;
            customerAddress.ModifiedDate = modifiedDate;
            return customerAddress;
        }