Testing.AddressType.CreateAddressType C# (CSharp) 메소드

CreateAddressType() 공개 정적인 메소드

Create a new AddressType object.
public static CreateAddressType ( global addressTypeID, global name, global rowguid, global modifiedDate ) : AddressType
addressTypeID global Initial value of the AddressTypeID 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.
리턴 AddressType
        public static AddressType CreateAddressType(global::System.Int32 addressTypeID, global::System.String name, global::System.Guid rowguid, global::System.DateTime modifiedDate)
        {
            AddressType addressType = new AddressType();
            addressType.AddressTypeID = addressTypeID;
            addressType.Name = name;
            addressType.rowguid = rowguid;
            addressType.ModifiedDate = modifiedDate;
            return addressType;
        }