/* /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();


/* /Pages/Blocks/Work_Lobby/Control.asmx */
addNamespace("Mantis.Rhino.UI.Services.WorkLobby");
Mantis.Rhino.UI.Services.WorkLobbyClass=new Class({
	Extends:WebService,
	url:"/Pages/Blocks/Work_Lobby/Control.asmx",
	
GetWorkSourceByTag:function (tagId,pageIndex,onSuccess,onFailure) {
	return WebService.prototype.send.apply(Mantis.Rhino.UI.Services.WorkLobby,["GetWorkSourceByTag",{tagId:tagId,pageIndex:pageIndex},onSuccess,onFailure]);
},
GetWorkMoreInfoSourceById:function (workId,onSuccess,onFailure) {
	return WebService.prototype.send.apply(Mantis.Rhino.UI.Services.WorkLobby,["GetWorkMoreInfoSourceById",{workId:workId},onSuccess,onFailure]);
}
});
Mantis.Rhino.UI.Services.WorkLobby=new Mantis.Rhino.UI.Services.WorkLobbyClass();


