public function create(CategoryBindingModel $category)
 {
     // Insert or update the $category
     // in the 'categories' table
     $this->db->insertEntity('categories', array('name' => $category->getName(), 'description' => $category->getDescription(), 'is_deleted' => false));
 }