FT.Data.Category.CreateCategory C# (CSharp) Method

CreateCategory() public static method

Create a new Category object.
public static CreateCategory ( global categoryId, global fTId ) : Category
categoryId global Initial value of the CategoryId property.
fTId global Initial value of the FTId property.
return Category
        public static Category CreateCategory(global::System.Int32 categoryId, global::System.Byte fTId)
        {
            Category category = new Category();
            category.CategoryId = categoryId;
            category.FTId = fTId;
            return category;
        }