Testing.Customer.CreateCustomer C# (CSharp) Method

CreateCustomer() public static method

Create a new Customer object.
public static CreateCustomer ( global customerID, global accountNumber, global customerType, global rowguid, global modifiedDate ) : Customer
customerID global Initial value of the CustomerID property.
accountNumber global Initial value of the AccountNumber property.
customerType global Initial value of the CustomerType property.
rowguid global Initial value of the rowguid property.
modifiedDate global Initial value of the ModifiedDate property.
return Customer
        public static Customer CreateCustomer(global::System.Int32 customerID, global::System.String accountNumber, global::System.String customerType, global::System.Guid rowguid, global::System.DateTime modifiedDate)
        {
            Customer customer = new Customer();
            customer.CustomerID = customerID;
            customer.AccountNumber = accountNumber;
            customer.CustomerType = customerType;
            customer.rowguid = rowguid;
            customer.ModifiedDate = modifiedDate;
            return customer;
        }