Beispiel #1
0
        public async Task <ActionResult> QRCodeScanEntry(string Token, int QRCodeId)
        {
            QRCodeLogic businessLogic = new QRCodeLogic();
            var         response      = await businessLogic.RecordQRCodeScanHistory(CurrentUserSession.AttendesID.Value, QRCodeId);

            return(Json(new { data = response }, JsonRequestBehavior.AllowGet));
        }
        public async Task <ActionResult> GetQRCodeData(string Token, int QRCodeId)
        {
            QRCodeLogic businessLogic = new QRCodeLogic();
            var         response      = await businessLogic.RecordQRCodeScanHistory(CurrentUserSession.AttendesID.Value, QRCodeId);

            return(Json(response));
        }