Testing.Store.CreateStore C# (CSharp) 메소드

CreateStore() 공개 정적인 메소드

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