/**
 * @namespace com.thesis.business.TMemberSignBO
 * @author 钟军锐 August.R@263.net
 */


/** @id TMemberSignBO */
function TMemberSignBO(Form){
	this.Command = new Command(Form.sURL);
	for(var i in Form.oParams){
		if(typeof Form.oParams[i] != "undefined" && Form.oParams[i] != null){
			this.Command.addParam(i,i + ".value",true);
		}
	}
	return new BusinessObject(TMemberObject,this.Command,Form.oParams);
}
