Type.registerNamespace('Clozone.Web.WebService'); Clozone.Web.WebService.Note = { path: "/WebService/Note.asmx", GetNotesByPortalAndMonth:function(prefix,year,month,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetNotesByPortalAndMonth",{prefix:prefix,year:year,month:month}, onMethodComplete, onMethodTimeout); }, AddNote:function(prefix,year,month,day,hours,minutes,content,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "AddNote",{prefix:prefix,year:year,month:month,day:day,hours:hours,minutes:minutes,content:content}, onMethodComplete, onMethodTimeout); }, DeleteNote:function(prefix,noteID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "DeleteNote",{prefix:prefix,noteID:noteID}, onMethodComplete, onMethodTimeout); }, UpdateNote:function(prefix,noteID,content,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "UpdateNote",{prefix:prefix,noteID:noteID,content:content}, onMethodComplete, onMethodTimeout); } }