public static Category CreateCategory(int categoryID, string categoryName) { Category category = new Category(); category.CategoryID = categoryID; category.CategoryName = categoryName; return category; }
public void AddToCategories(Category category) { base.AddObject("Categories", category); }