(function() {
var Account = function() {
this._init();
};
Account.prototype = {
_init: function() {
this.start();
},
start: function() {
alert("Hello World");
}
}
return Account;
});