Example #1
0
 protected void NotificarErro(string errorMsg)
 {
     _notificador.Handle(new Business.Notificacoes.Notificacao(errorMsg));
 }
Example #2
0
 protected void NotificarErro(string mensagem)
 {
     _notificador.Handle(new Business.Notifications.Notificacao(mensagem));
 }
 public void Notificar(string mensagem)
 {
     _notificador.Handle(new Notificacao(mensagem));
 }
 protected void NotificarErro(string mensagem)
 {
     _notificador.Handle(new DevIO.Business.Notificacoes.Notificacao(mensagem));
 }
 protected void Notificar(string mensagem)
 {
     //insere na lista de notificações cada mensagem
     _notificador.Handle(new Notificacao(mensagem));
 }
 protected void InsereErro(string erro, int typeError = 1)
 {
     _notificador.Handle(new Notificacao(erro, typeError));
 }
        public void NotificarErro(string errorMsg)
        {
            //Objeto responsável pela notificação, que será lançado.

            _notificador.Handle(new DevIO.Business.Notificacoes.Notificacao(errorMsg));
        }
Example #8
0
 protected void NotificarErro(string erroMsg)
 {
     _notificador.Handle(new Notificacao(erroMsg));
 }
Example #9
0
 protected void InsereErro(string erro)
 {
     _notificador.Handle(new Notificacao(erro));
 }
Example #10
0
 protected void Notificar(string mensagem)
 {
     // Propagar esse erro até a camada de apresentaçao
     _notificador.Handle(new Notificacao(mensagem));
 }
Example #11
0
 protected void Notify(string mensagem)
 {
     Notificador.Handle(new Notificacao(mensagem));
 }
Example #12
0
 protected void NotifyError(string errorMessage)
 {
     _notificador.Handle(new Notificacao(errorMessage));
 }
Example #13
0
 protected void Notificar(string mensagem)
 {
     //Método que ira propagar erro até a camada de apresentação
     _notificador.Handle(new Notificacao(mensagem));
 }
 protected void Notificar(string mensagem)
 {
     // Propagar esse erro até a camada de apresentação usando um notificator (emissão de eventos)
     _notificador.Handle(new Notificacao(mensagem));
 }
Example #15
0
 protected void Notificar(string mensagem)
 {
     //Método que ira propagar erro até a API
     _notificador.Handle(new Notificacao(mensagem));
 }
Example #16
0
 protected void Notificar(string message)
 {
     _notificador.Handle(new Notificacao(message));
 }
 protected void NotificarErro(string msgErro)
 {
     _notificador.Handle(new Notificacao(msgErro));
 }
Example #18
0
 protected void NotificarErro(string mensagem)
 {
     _notificador.Handle(new Notificacao(mensagem));
 }
 protected void Notificar(string mensagem) => _notificador.Handle(new Notificacao(mensagem));