var Model = Class.create();

Object.extend(Model.prototype, {
   initialize: function() {
    },
    getId: function() {
        return parseInt(this.id);
    },
    getName: function() {
        return this.name;
    }
})
