Example #1
0
        private void cambiarEstadoDelTurno(int estado)
        {
            if (ControladorTurnos.CambiarEstadoDelTurno(Convert.ToInt32(Session["codigoTurno"]), estado))
            {
                if (estado == Constantes.EstadosTurno.RESERVADO)
                {
                    PushNotification.SendPersonalPush("reservation", Session["descripcionComplejo"].ToString() + " ha respondido!", Session["codigoTelefonoUsuarioApp"].ToString());
                }
                if (estado == Constantes.EstadosTurno.CANCELADO)
                {
                    PushNotification.SendPersonalPush("reservation", Session["descripcionComplejo"].ToString() + " ha respondido!", Session["codigoTelefonoUsuarioApp"].ToString());
                }
            }

            pcTurno.ShowOnPageLoad = false;
            LoadGrillaTurnosNew();
        }