示例#1
0
 public static string ConfirmOTPEmailOrMoble(string Email, string Mobile, out UserRegisterOTP userRegisterOTP)
 {
     return(DBM.GetOne("usp_UserRegisterOTP_CheckEmailOrMobile", new { Email, Mobile }, out userRegisterOTP));
 }
示例#2
0
 static public string GetByPhoneNumber(string Email, string Mobile, string OTPCode, out UserRegisterOTP o)
 {
     return(DBM.GetOne("usp_UserRegisterOTP_SelectByMobile", new { Email, Mobile, OTPCode }, out o));
 }