Advertisement
Guest User

Untitled

a guest
Sep 7th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. webservice String userName { get; set; }
  2. webservice String password { get; set; }
  3.  
  4. public QuickBooksWS() {
  5. this.userName = 'value';
  6. this.password = 'password';
  7. }
  8.  
  9. webservice static String authenticate(String userName,String password){
  10. return 'looged in as :'+userName +'and password: '+password;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement