private suspend fun requireCategoryPresent(category: Category) {
        categories.getById(category.id) ?: throw DatabaseService.NotFoundException(category.id)
    }