Type.registerNamespace('maetbew');
maetbew.ContactService=function() {
maetbew.ContactService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
maetbew.ContactService.prototype={
SubmitContact:function(comments,succeededCallback, failedCallback, userContext) {
return this._invoke(maetbew.ContactService.get_path(), 'SubmitContact',false,{comments:comments},succeededCallback,failedCallback,userContext); }}
maetbew.ContactService.registerClass('maetbew.ContactService',Sys.Net.WebServiceProxy);
maetbew.ContactService._staticInstance = new maetbew.ContactService();
maetbew.ContactService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; maetbew.ContactService._staticInstance._path = value; }
maetbew.ContactService.get_path = function() { return maetbew.ContactService._staticInstance._path; }
maetbew.ContactService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
maetbew.ContactService._staticInstance._timeout = value; }
maetbew.ContactService.get_timeout = function() { 
return maetbew.ContactService._staticInstance._timeout; }
maetbew.ContactService.set_defaultUserContext = function(value) { 
maetbew.ContactService._staticInstance._userContext = value; }
maetbew.ContactService.get_defaultUserContext = function() { 
return maetbew.ContactService._staticInstance._userContext; }
maetbew.ContactService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; maetbew.ContactService._staticInstance._succeeded = value; }
maetbew.ContactService.get_defaultSucceededCallback = function() { 
return maetbew.ContactService._staticInstance._succeeded; }
maetbew.ContactService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; maetbew.ContactService._staticInstance._failed = value; }
maetbew.ContactService.get_defaultFailedCallback = function() { 
return maetbew.ContactService._staticInstance._failed; }
maetbew.ContactService.set_path("/Services/ContactService.asmx");
maetbew.ContactService.SubmitContact= function(comments,onSuccess,onFailed,userContext) {maetbew.ContactService._staticInstance.SubmitContact(comments,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(maetbew.ContactObject) === 'undefined') {
maetbew.ContactObject=gtc("maetbew.ContactObject");
maetbew.ContactObject.registerClass('maetbew.ContactObject');
}
