public void Begin()
        {
            _transactionEventSinkWithMock.Expect(mock => mock.RaiseObjectDeletingEvent(_order1));
            _transactionEventSinkWithMock.Replay();

            _deleteOrder1Command.Begin();

            _transactionEventSinkWithMock.VerifyAllExpectations();
        }