Testing.ProductModelIllustration.CreateProductModelIllustration C# (CSharp) Method

CreateProductModelIllustration() public static method

Create a new ProductModelIllustration object.
public static CreateProductModelIllustration ( global productModelID, global illustrationID, global modifiedDate ) : ProductModelIllustration
productModelID global Initial value of the ProductModelID property.
illustrationID global Initial value of the IllustrationID property.
modifiedDate global Initial value of the ModifiedDate property.
return ProductModelIllustration
        public static ProductModelIllustration CreateProductModelIllustration(global::System.Int32 productModelID, global::System.Int32 illustrationID, global::System.DateTime modifiedDate)
        {
            ProductModelIllustration productModelIllustration = new ProductModelIllustration();
            productModelIllustration.ProductModelID = productModelID;
            productModelIllustration.IllustrationID = illustrationID;
            productModelIllustration.ModifiedDate = modifiedDate;
            return productModelIllustration;
        }