FT.Data.ItemCommittee.CreateItemCommittee C# (CSharp) Method

CreateItemCommittee() public static method

Create a new ItemCommittee object.
public static CreateItemCommittee ( global itemId, global itemType, global committeeId, global itemCommitteeId ) : ItemCommittee
itemId global Initial value of the ItemId property.
itemType global Initial value of the ItemType property.
committeeId global Initial value of the CommitteeId property.
itemCommitteeId global Initial value of the ItemCommitteeId property.
return ItemCommittee
        public static ItemCommittee CreateItemCommittee(global::System.Int32 itemId, global::System.Byte itemType, global::System.Int32 committeeId, global::System.Int32 itemCommitteeId)
        {
            ItemCommittee itemCommittee = new ItemCommittee();
            itemCommittee.ItemId = itemId;
            itemCommittee.ItemType = itemType;
            itemCommittee.CommitteeId = committeeId;
            itemCommittee.ItemCommitteeId = itemCommitteeId;
            return itemCommittee;
        }