/* /Services/UserService.asmx */
addNamespace("Mantis.Web.Services.UserService");
Mantis.Web.Services.UserServiceClass=new Class({
	Extends:WebService,
	url:"/Services/UserService.asmx",
	
GetLoginFormSource:function (onSuccess,onFailure) {
	return WebService.prototype.send.apply(Mantis.Web.Services.UserService,["GetLoginFormSource",{},onSuccess,onFailure]);
},
SendPassword:function (userName,onSuccess,onFailure) {
	return WebService.prototype.send.apply(Mantis.Web.Services.UserService,["SendPassword",{userName:userName},onSuccess,onFailure]);
}
});
Mantis.Web.Services.UserService=new Mantis.Web.Services.UserServiceClass();


/* /FormGenerator/FormGenerator.asmx */
addNamespace("Mantis.FormGenerator.FormGeneratorService");
Mantis.FormGenerator.FormGeneratorServiceClass=new Class({
	Extends:WebService,
	url:"/FormGenerator/FormGenerator.asmx",
	
GetFormSource:function (formName,properties,onSuccess,onFailure) {
	return WebService.prototype.send.apply(Mantis.FormGenerator.FormGeneratorService,["GetFormSource",{formName:formName,properties:properties},onSuccess,onFailure]);
}
});
Mantis.FormGenerator.FormGeneratorService=new Mantis.FormGenerator.FormGeneratorServiceClass();


