23 #include "ServiceInt.h"
25 void ServiceInt::setComponent(
Component *_comp)
30 void ServiceInt::startTransaction()
32 this->_comp->startTransaction();
34 void ServiceInt::endTransaction()
36 this->_comp->endTransaction();
38 void ServiceInt::commit()
40 this->_comp->commit();
42 void ServiceInt::rollback()
44 this->_comp->rollback();
46 void ServiceInt::execute()
48 this->_comp->execute();
52 return this->_comp->getCibernate();