예제 #1
0
 public void ChangePassword(Users obj)
 {
     string[][] param =
     {
         new string[] { "p_UserId", obj.UserId },
         new string[] { "p_Pwd",    obj.Pwd    },
     };
     PosService.DataStoreProcExecute(Username, Password, "spChangePassword_User", ref errorString, param, ref res);
 }