예제 #1
0
        public static Category CategoryUpdate(Category category)
        {
            category = category.Save();

            FeedService.FeedAdd("Updated", category);

            return category;
        }
예제 #2
0
        public static Category CategoryInsert(Category category)
        {
            category = category.Save();

            FeedService.FeedAdd("Created", category);

            return category;
        }