Example #1
0
 public int  RegisterUser_Step1()
 {
     try
     {
         if (DAL.checkMobile(this))
         {
             return(3);
         }
         else if (DAL.checkMobile(this))
         {
             return(4);
         }
         else
         {
             return(DAL.InsertUser_Step1(this, out _user_Id));
         }
     }
     catch
     {
         throw;
     }
 }