Example #1
0
        public ActionResult EnterOtp(FormCollection frm, int RequestId, int UserId)
        {
            string OTP = frm["OTP"].ToString();

            objFileDataLayer.AuthenticateOTP(RequestId, UserId, OTP);
            return(View());
        }