VideoRentalService.store.Createstore C# (CSharp) Method

Createstore() public static method

Create a new store object.
public static Createstore ( global store_id, global manager_staff_id, global address_id, global last_update ) : store
store_id global Initial value of the store_id property.
manager_staff_id global Initial value of the manager_staff_id property.
address_id global Initial value of the address_id property.
last_update global Initial value of the last_update property.
return store
        public static store Createstore(global::System.Byte store_id, global::System.Byte manager_staff_id, global::System.Int32 address_id, global::System.DateTime last_update)
        {
            store store = new store();
            store.store_id = store_id;
            store.manager_staff_id = manager_staff_id;
            store.address_id = address_id;
            store.last_update = last_update;
            return store;
        }