WijmoMVC.Models.Current_Product_List.CreateCurrent_Product_List C# (CSharp) Method

CreateCurrent_Product_List() public static method

Create a new Current_Product_List object.
public static CreateCurrent_Product_List ( global productID, global productName ) : Current_Product_List
productID global Initial value of the ProductID property.
productName global Initial value of the ProductName property.
return Current_Product_List
        public static Current_Product_List CreateCurrent_Product_List(global::System.Int32 productID, global::System.String productName)
        {
            Current_Product_List current_Product_List = new Current_Product_List();
            current_Product_List.ProductID = productID;
            current_Product_List.ProductName = productName;
            return current_Product_List;
        }