Exemplo n.º 1
0
        public void Handle(TCommand command)
        {
            using (var uow = _uowFactory.CreateWithTransaction(System.Data.IsolationLevel.ReadCommitted))
            {
                _decorated.Handle(command);

                uow.Complete();
            }
        }