
function Level2SecuritiesWorklistSimple(caller,viewer,body,callback,pageSize)
{this.caller=caller;this.viewer=viewer;this.body=body;this.callback=callback;this.pageSize=pageSize;}
Level2SecuritiesWorklistSimple.prototype=new WorklistSimple();Level2SecuritiesWorklistSimple.prototype.doAll=function(body)
{this.run(new Level2SecuritiesWorklistCriteria(1,this.pageSize),body);}
Level2SecuritiesWorklistSimple.prototype.makeCall=function(criteria,dataHandler)
{this.caller.getLevel2SecuritiesWorklist(criteria.page,criteria.pageSize,dataHandler);}
Level2SecuritiesWorklistSimple.prototype.gotoQuote=function(ev)
{var record=this.myRecord;this.myCallback.callback.gotoQuote(record.symbol);return false;}
function Level2SecuritiesWorklistCriteria(page,pageSize)
{this.page=page;this.pageSize=pageSize;}