private bool EnvioPushWooshResult(List <KeyValuePair <string, DateTime> > p_novoPush, string texto)
        {
            var _retornoPushWoosh = new EnvioPush().EnviarPushNotificationProgramado(p_novoPush, texto);

            return(_retornoPushWoosh);
        }
        private bool EnvioPushWooshResult(List <string> p_mensagens, string texto)
        {
            var _retornoPushWoosh = new EnvioPush().EnviarPushNotification(p_mensagens, texto);

            return(_retornoPushWoosh);
        }
Exemple #3
0
        private bool EnvioPushWooshResult(NovaMensagemPushViewModel p_mensagem)
        {
            var _retornoPushWoosh = new EnvioPush().EnviarPushNotification(p_mensagem.Mensagem);

            return(_retornoPushWoosh);
        }