Ejemplo n.º 1
0
 public int InsertNewUser(String UserName, String Password, int UserLevel, String Email)
 {
     //return number of users inserted (0=1 for this one)
     return(tabUserAdapter.InsertNewUser(UserName, Password, UserLevel, Email));
 }
Ejemplo n.º 2
0
 public int InsertNewUser(string userName, string password, int userLevel, string email)
 {
     //return number of users inserted (0-1 for this one)
     return(tabUserAdapter.InsertNewUser(userName, password, userLevel, email));
 }
Ejemplo n.º 3
0
 //-------------------------NEW---------------------------------------
 public int InsertNewUser(string userName, string password, int userLevel, string email)
 {
     //return number of rows affected (1 good, 0 didn't insert)
     return(tabUserTableAdapter.InsertNewUser(userName, password, userLevel, email));
 }
Ejemplo n.º 4
0
 public int InsertNewUser(string userName, string password, int userLevel, string email)
 {
     return(tabUserAdapter.InsertNewUser(userName, password, userLevel, email));
 }