876877878879880881882883
/** * Creates a Category from a CategoryVO */ private Category create(CategoryVO c, Database db) throws SystemException { CategoryImpl impl = new CategoryImpl(c); return ((CategoryImpl)createEntity(impl)); }
899900901902903904905906
/** * Creates a Category from a CategoryVO */ private CategoryVO create(CategoryVO c) throws SystemException { CategoryImpl impl = new CategoryImpl(c); return ((CategoryImpl)createEntity(impl)).getValueObject(); }