CategoryTypeService¶
Use API¶
CategoryTypeService categoryTypeService = Imcms.getServices().getManagedBean(CategoryTypeService.class);
Optional<CategoryType> get(int id);
List<CategoryType> getAll();
CategoryType create(CategoryType saveMe);
CategoryType update(CategoryType updateMe);
void delete(int id);
Note
About type Optional<T> can read here.