public static Int32 SaveCategory(BoardCategory category) { if (category.CategoryID > 0) { Update(category); } else { Add(category); } return category.CategoryID; }
public static void DeleteCategory(BoardCategory category) { Delete(category.Id); }