23 #include "Component.h"
25 Component::Component() {
29 Component::~Component() {
34 void Component::startTransaction()
36 getCibernate()->startTransaction();
39 void Component::endTransaction()
41 getCibernate()->commit();
44 void Component::commit()
46 getCibernate()->commit();
49 void Component::rollback()
51 getCibernate()->rollback();
54 void Component::execute()