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