예제 #1
0
        protected bool Commit()
        {
            if (_notificacoes.TemNotificacoes())
            {
                return(false);
            }

            var respostaComando = _unidadeDeTrabalho.Commit();

            if (respostaComando.Sucesso)
            {
                return(true);
            }

            Console.WriteLine("Ocorreu um erro ao salvar os dados no banco");
            _mediator.PublicarEvento(new NotificacaoDominio("Commit", "Ocorreu um erro ao salvar os dados no banco"));
            return(false);
        }
예제 #2
0
 protected bool OperacaoValida()
 {
     return(!_notifications.TemNotificacoes());
 }