void OTTransactionType::Release()
{
    Release_TransactionType();

    Contract::Release(); // since I've overridden the base class, I call it
                         // now...
}
void OTTransactionType::Release()
{
	Release_TransactionType();
    
	ot_super::Release(); // since I've overridden the base class, I call it now...
}
OTTransactionType::~OTTransactionType()
{
	Release_TransactionType();
}