Ejemplo n.º 1
0
        public ActionResult UnearmuffCall(string id)
        {
            var UUID = HttpContext.Session.GetString(UIDD);

            var result = VoiceSender.UnearmuffCall(id);

            return(View("Index"));
        }
Ejemplo n.º 2
0
        public ActionResult EarmuffCall(string id)
        {
            var UUID = HttpContext.Session.GetString(UIDD);

            VoiceSender.EarmuffCall(id);

            Thread.Sleep(3000);

            VoiceSender.UnearmuffCall(id);

            return(View("Index"));
        }