FT.Data.P20Question.CreateP20Question C# (CSharp) Method

CreateP20Question() public static method

Create a new P20Question object.
public static CreateP20Question ( global p20QuestionId, global type ) : P20Question
p20QuestionId global Initial value of the P20QuestionId property.
type global Initial value of the Type property.
return P20Question
        public static P20Question CreateP20Question(global::System.Int32 p20QuestionId, global::System.Byte type)
        {
            P20Question p20Question = new P20Question();
            p20Question.P20QuestionId = p20QuestionId;
            p20Question.Type = type;
            return p20Question;
        }