Testing.StoreContact.CreateStoreContact C# (CSharp) Method

CreateStoreContact() public static method

Create a new StoreContact object.
public static CreateStoreContact ( global customerID, global contactID, global contactTypeID, global rowguid, global modifiedDate ) : StoreContact
customerID global Initial value of the CustomerID property.
contactID global Initial value of the ContactID property.
contactTypeID global Initial value of the ContactTypeID property.
rowguid global Initial value of the rowguid property.
modifiedDate global Initial value of the ModifiedDate property.
return StoreContact
        public static StoreContact CreateStoreContact(global::System.Int32 customerID, global::System.Int32 contactID, global::System.Int32 contactTypeID, global::System.Guid rowguid, global::System.DateTime modifiedDate)
        {
            StoreContact storeContact = new StoreContact();
            storeContact.CustomerID = customerID;
            storeContact.ContactID = contactID;
            storeContact.ContactTypeID = contactTypeID;
            storeContact.rowguid = rowguid;
            storeContact.ModifiedDate = modifiedDate;
            return storeContact;
        }