Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Action(){
  2. this.Id = 0;
  3. this.buildModel = function(){
  4. this.ActionType = $("#ActionType").val();
  5. // and so on
  6. }
  7. }
  8.  
  9. //using
  10. var actionModel = new Action();
  11. actionModel.buildModel();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement