Testing.StoreContact.CreateStoreContact C# (CSharp) 메소드

CreateStoreContact() 공개 정적인 메소드

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.
리턴 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;
        }