Testing.Store.CreateStore C# (CSharp) Method

CreateStore() public static method

Create a new Store object.
public static CreateStore ( global customerID, global name, global rowguid, global modifiedDate ) : Store
customerID global Initial value of the CustomerID property.
name global Initial value of the Name property.
rowguid global Initial value of the rowguid property.
modifiedDate global Initial value of the ModifiedDate property.
return Store
        public static Store CreateStore(global::System.Int32 customerID, global::System.String name, global::System.Guid rowguid, global::System.DateTime modifiedDate)
        {
            Store store = new Store();
            store.CustomerID = customerID;
            store.Name = name;
            store.rowguid = rowguid;
            store.ModifiedDate = modifiedDate;
            return store;
        }