Type.registerNamespace('Woyama.Web.Services');
Woyama.Web.Services.AjaxService=function() {
Woyama.Web.Services.AjaxService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Woyama.Web.Services.AjaxService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Woyama.Web.Services.AjaxService._staticInstance.get_path();},
GetProductDetails:function(productId,type,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetProductDetails',false,{productId:productId,type:type},succeededCallback,failedCallback,userContext); },
GetProductsByCategory:function(categoryId,numberOfItems,type,bConstructChart,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetProductsByCategory',false,{categoryId:categoryId,numberOfItems:numberOfItems,type:type,bConstructChart:bConstructChart},succeededCallback,failedCallback,userContext); },
GetDealsByKeywords:function(queryStr,sortExp,itemsPerPage,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetDealsByKeywords',false,{queryStr:queryStr,sortExp:sortExp,itemsPerPage:itemsPerPage,currPage:currPage},succeededCallback,failedCallback,userContext); },
GetRetailDeals:function(categoryId,itemsPerPage,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetRetailDeals',false,{categoryId:categoryId,itemsPerPage:itemsPerPage,currPage:currPage},succeededCallback,failedCallback,userContext); },
GetAuctionDeals:function(categoryId,itemsPerPage,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetAuctionDeals',false,{categoryId:categoryId,itemsPerPage:itemsPerPage,currPage:currPage},succeededCallback,failedCallback,userContext); },
GetClassifiedDeals:function(categoryId,metroId,itemsPerPage,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetClassifiedDeals',false,{categoryId:categoryId,metroId:metroId,itemsPerPage:itemsPerPage,currPage:currPage},succeededCallback,failedCallback,userContext); },
SearchProductsQuick:function(query,numberOfItems,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SearchProductsQuick',false,{query:query,numberOfItems:numberOfItems},succeededCallback,failedCallback,userContext); },
SearchProducts:function(query,categoryId,filtersW,sortOrder,numberOfItems,currPage,bPullChildCategories,bExtendedSearch,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SearchProducts',false,{query:query,categoryId:categoryId,filtersW:filtersW,sortOrder:sortOrder,numberOfItems:numberOfItems,currPage:currPage,bPullChildCategories:bPullChildCategories,bExtendedSearch:bExtendedSearch},succeededCallback,failedCallback,userContext); },
BrowseProducts:function(categoryId,filtersW,sortOrder,numberOfItems,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'BrowseProducts',false,{categoryId:categoryId,filtersW:filtersW,sortOrder:sortOrder,numberOfItems:numberOfItems,currPage:currPage},succeededCallback,failedCallback,userContext); },
FlagSearchBoxSuggestions:function(bSearchAutoSuggestOn,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'FlagSearchBoxSuggestions',false,{bSearchAutoSuggestOn:bSearchAutoSuggestOn},succeededCallback,failedCallback,userContext); },
GetRetailOffers:function(productId,zip,filtersW,sortOrder,numberOfItems,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetRetailOffers',false,{productId:productId,zip:zip,filtersW:filtersW,sortOrder:sortOrder,numberOfItems:numberOfItems,currPage:currPage},succeededCallback,failedCallback,userContext); },
GetAuctionOffers:function(productId,zip,filtersW,sortOrder,numberOfItems,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetAuctionOffers',false,{productId:productId,zip:zip,filtersW:filtersW,sortOrder:sortOrder,numberOfItems:numberOfItems,currPage:currPage},succeededCallback,failedCallback,userContext); },
GetClassifiedOffers:function(productId,metroId,filtersW,sortOrder,numberOfItems,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetClassifiedOffers',false,{productId:productId,metroId:metroId,filtersW:filtersW,sortOrder:sortOrder,numberOfItems:numberOfItems,currPage:currPage},succeededCallback,failedCallback,userContext); },
GetAllOffers:function(productId,zip,filtersW,numberOfItems,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetAllOffers',false,{productId:productId,zip:zip,filtersW:filtersW,numberOfItems:numberOfItems,currPage:currPage},succeededCallback,failedCallback,userContext); },
GetRecommendedOffers:function(productId,zip,metroId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetRecommendedOffers',false,{productId:productId,zip:zip,metroId:metroId},succeededCallback,failedCallback,userContext); },
GetProductReviews:function(productId,sortOrder,rating,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetProductReviews',false,{productId:productId,sortOrder:sortOrder,rating:rating,currPage:currPage},succeededCallback,failedCallback,userContext); },
SearchRebates:function(categoryId,filtersW,sortOrder,numberOfItems,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SearchRebates',false,{categoryId:categoryId,filtersW:filtersW,sortOrder:sortOrder,numberOfItems:numberOfItems,currPage:currPage},succeededCallback,failedCallback,userContext); },
SearchCoupons:function(query,filtersW,numberOfItems,currPage,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SearchCoupons',false,{query:query,filtersW:filtersW,numberOfItems:numberOfItems,currPage:currPage},succeededCallback,failedCallback,userContext); }}
Woyama.Web.Services.AjaxService.registerClass('Woyama.Web.Services.AjaxService',Sys.Net.WebServiceProxy);
Woyama.Web.Services.AjaxService._staticInstance = new Woyama.Web.Services.AjaxService();
Woyama.Web.Services.AjaxService.set_path = function(value) { Woyama.Web.Services.AjaxService._staticInstance.set_path(value); }
Woyama.Web.Services.AjaxService.get_path = function() { return Woyama.Web.Services.AjaxService._staticInstance.get_path(); }
Woyama.Web.Services.AjaxService.set_timeout = function(value) { Woyama.Web.Services.AjaxService._staticInstance.set_timeout(value); }
Woyama.Web.Services.AjaxService.get_timeout = function() { return Woyama.Web.Services.AjaxService._staticInstance.get_timeout(); }
Woyama.Web.Services.AjaxService.set_defaultUserContext = function(value) { Woyama.Web.Services.AjaxService._staticInstance.set_defaultUserContext(value); }
Woyama.Web.Services.AjaxService.get_defaultUserContext = function() { return Woyama.Web.Services.AjaxService._staticInstance.get_defaultUserContext(); }
Woyama.Web.Services.AjaxService.set_defaultSucceededCallback = function(value) { Woyama.Web.Services.AjaxService._staticInstance.set_defaultSucceededCallback(value); }
Woyama.Web.Services.AjaxService.get_defaultSucceededCallback = function() { return Woyama.Web.Services.AjaxService._staticInstance.get_defaultSucceededCallback(); }
Woyama.Web.Services.AjaxService.set_defaultFailedCallback = function(value) { Woyama.Web.Services.AjaxService._staticInstance.set_defaultFailedCallback(value); }
Woyama.Web.Services.AjaxService.get_defaultFailedCallback = function() { return Woyama.Web.Services.AjaxService._staticInstance.get_defaultFailedCallback(); }
Woyama.Web.Services.AjaxService.set_path("/services/ajaxService.svc");
Woyama.Web.Services.AjaxService.GetProductDetails= function(productId,type,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetProductDetails(productId,type,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetProductsByCategory= function(categoryId,numberOfItems,type,bConstructChart,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetProductsByCategory(categoryId,numberOfItems,type,bConstructChart,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetDealsByKeywords= function(queryStr,sortExp,itemsPerPage,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetDealsByKeywords(queryStr,sortExp,itemsPerPage,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetRetailDeals= function(categoryId,itemsPerPage,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetRetailDeals(categoryId,itemsPerPage,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetAuctionDeals= function(categoryId,itemsPerPage,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetAuctionDeals(categoryId,itemsPerPage,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetClassifiedDeals= function(categoryId,metroId,itemsPerPage,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetClassifiedDeals(categoryId,metroId,itemsPerPage,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.SearchProductsQuick= function(query,numberOfItems,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.SearchProductsQuick(query,numberOfItems,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.SearchProducts= function(query,categoryId,filtersW,sortOrder,numberOfItems,currPage,bPullChildCategories,bExtendedSearch,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.SearchProducts(query,categoryId,filtersW,sortOrder,numberOfItems,currPage,bPullChildCategories,bExtendedSearch,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.BrowseProducts= function(categoryId,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.BrowseProducts(categoryId,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.FlagSearchBoxSuggestions= function(bSearchAutoSuggestOn,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.FlagSearchBoxSuggestions(bSearchAutoSuggestOn,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetRetailOffers= function(productId,zip,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetRetailOffers(productId,zip,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetAuctionOffers= function(productId,zip,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetAuctionOffers(productId,zip,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetClassifiedOffers= function(productId,metroId,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetClassifiedOffers(productId,metroId,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetAllOffers= function(productId,zip,filtersW,numberOfItems,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetAllOffers(productId,zip,filtersW,numberOfItems,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetRecommendedOffers= function(productId,zip,metroId,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetRecommendedOffers(productId,zip,metroId,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.GetProductReviews= function(productId,sortOrder,rating,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.GetProductReviews(productId,sortOrder,rating,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.SearchRebates= function(categoryId,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.SearchRebates(categoryId,filtersW,sortOrder,numberOfItems,currPage,onSuccess,onFailed,userContext); }
Woyama.Web.Services.AjaxService.SearchCoupons= function(query,filtersW,numberOfItems,currPage,onSuccess,onFailed,userContext) {Woyama.Web.Services.AjaxService._staticInstance.SearchCoupons(query,filtersW,numberOfItems,currPage,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Woyama.Web.Services.SimpleItemsResultOfProductDetailsWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.SimpleItemsResultOfProductDetailsWrapperZgwOIm6f=gtc("SimpleItemsResultOfProductDetailsWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.SimpleItemsResultOfProductDetailsWrapperZgwOIm6f.registerClass('Woyama.Web.Services.SimpleItemsResultOfProductDetailsWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.AjaxResult) === 'undefined') {
Woyama.Web.Services.AjaxResult=gtc("AjaxResult:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.AjaxResult.registerClass('Woyama.Web.Services.AjaxResult');
}
if (typeof(Woyama.Web.Services.ProductDetailsWrapper) === 'undefined') {
Woyama.Web.Services.ProductDetailsWrapper=gtc("ProductDetailsWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductDetailsWrapper.registerClass('Woyama.Web.Services.ProductDetailsWrapper');
}
if (typeof(Woyama.Web.Services.ProductSummaryWrapper) === 'undefined') {
Woyama.Web.Services.ProductSummaryWrapper=gtc("ProductSummaryWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductSummaryWrapper.registerClass('Woyama.Web.Services.ProductSummaryWrapper');
}
if (typeof(Woyama.Web.Services.ItemsResultOfProductSummaryWrapperProductDetailsWrapperhYdhVHfY) === 'undefined') {
Woyama.Web.Services.ItemsResultOfProductSummaryWrapperProductDetailsWrapperhYdhVHfY=gtc("ItemsResultOfProductSummaryWrapperProductDetailsWrapperhYdhVHfY:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ItemsResultOfProductSummaryWrapperProductDetailsWrapperhYdhVHfY.registerClass('Woyama.Web.Services.ItemsResultOfProductSummaryWrapperProductDetailsWrapperhYdhVHfY');
}
if (typeof(Woyama.Web.Services.SimpleItemsResultOfProductSummaryWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.SimpleItemsResultOfProductSummaryWrapperZgwOIm6f=gtc("SimpleItemsResultOfProductSummaryWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.SimpleItemsResultOfProductSummaryWrapperZgwOIm6f.registerClass('Woyama.Web.Services.SimpleItemsResultOfProductSummaryWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.PagedResultOfOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfOfferWrapperZgwOIm6f=gtc("PagedResultOfOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.OfferWrapper) === 'undefined') {
Woyama.Web.Services.OfferWrapper=gtc("OfferWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.OfferWrapper.registerClass('Woyama.Web.Services.OfferWrapper');
}
if (typeof(Woyama.Web.Services.AuctionOfferWrapper) === 'undefined') {
Woyama.Web.Services.AuctionOfferWrapper=gtc("AuctionOfferWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.AuctionOfferWrapper.registerClass('Woyama.Web.Services.AuctionOfferWrapper');
}
if (typeof(Woyama.Web.Services.ClassifiedOfferWrapper) === 'undefined') {
Woyama.Web.Services.ClassifiedOfferWrapper=gtc("ClassifiedOfferWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ClassifiedOfferWrapper.registerClass('Woyama.Web.Services.ClassifiedOfferWrapper');
}
if (typeof(Woyama.Web.Services.RetailOfferWrapper) === 'undefined') {
Woyama.Web.Services.RetailOfferWrapper=gtc("RetailOfferWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.RetailOfferWrapper.registerClass('Woyama.Web.Services.RetailOfferWrapper');
}
if (typeof(Woyama.Web.Services.PagedResultOfRetailOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfRetailOfferWrapperZgwOIm6f=gtc("PagedResultOfRetailOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfRetailOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfRetailOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.PagedResultOfAuctionOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfAuctionOfferWrapperZgwOIm6f=gtc("PagedResultOfAuctionOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfAuctionOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfAuctionOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.PagedResultOfClassifiedOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfClassifiedOfferWrapperZgwOIm6f=gtc("PagedResultOfClassifiedOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfClassifiedOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfClassifiedOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.FilterWrapper) === 'undefined') {
Woyama.Web.Services.FilterWrapper=gtc("FilterWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.FilterWrapper.registerClass('Woyama.Web.Services.FilterWrapper');
}
if (typeof(Woyama.Web.Services.ProductSearchResult) === 'undefined') {
Woyama.Web.Services.ProductSearchResult=gtc("ProductSearchResult:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductSearchResult.registerClass('Woyama.Web.Services.ProductSearchResult');
}
if (typeof(Woyama.Web.Services.PagedResultOfProductSummaryWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfProductSummaryWrapperZgwOIm6f=gtc("PagedResultOfProductSummaryWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfProductSummaryWrapperZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfProductSummaryWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.CategoryInfoWrapper) === 'undefined') {
Woyama.Web.Services.CategoryInfoWrapper=gtc("CategoryInfoWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.CategoryInfoWrapper.registerClass('Woyama.Web.Services.CategoryInfoWrapper');
}
if (typeof(Woyama.Web.Services.ProductOffersResultOfRetailOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.ProductOffersResultOfRetailOfferWrapperZgwOIm6f=gtc("ProductOffersResultOfRetailOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductOffersResultOfRetailOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.ProductOffersResultOfRetailOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.ProductOffersResultOfAuctionOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.ProductOffersResultOfAuctionOfferWrapperZgwOIm6f=gtc("ProductOffersResultOfAuctionOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductOffersResultOfAuctionOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.ProductOffersResultOfAuctionOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.ProductOffersResultOfClassifiedOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.ProductOffersResultOfClassifiedOfferWrapperZgwOIm6f=gtc("ProductOffersResultOfClassifiedOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductOffersResultOfClassifiedOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.ProductOffersResultOfClassifiedOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.ProductOffersResultOfOfferWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.ProductOffersResultOfOfferWrapperZgwOIm6f=gtc("ProductOffersResultOfOfferWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductOffersResultOfOfferWrapperZgwOIm6f.registerClass('Woyama.Web.Services.ProductOffersResultOfOfferWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.OfferSummaryResult) === 'undefined') {
Woyama.Web.Services.OfferSummaryResult=gtc("OfferSummaryResult:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.OfferSummaryResult.registerClass('Woyama.Web.Services.OfferSummaryResult');
}
Type.registerNamespace('www.w3.org._2001.XMLSchema');
if (typeof(www.w3.org._2001.XMLSchema.int) === 'undefined') {
www.w3.org._2001.XMLSchema.int=gtc("int:http://www.w3.org/2001/XMLSchema");
www.w3.org._2001.XMLSchema.int.registerClass('www.w3.org._2001.XMLSchema.int');
}
if (typeof(Woyama.Web.Services.PagedResultOfProductReviewWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfProductReviewWrapperZgwOIm6f=gtc("PagedResultOfProductReviewWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfProductReviewWrapperZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfProductReviewWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.ProductReviewWrapper) === 'undefined') {
Woyama.Web.Services.ProductReviewWrapper=gtc("ProductReviewWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductReviewWrapper.registerClass('Woyama.Web.Services.ProductReviewWrapper');
}
if (typeof(Woyama.Web.Services.RebateSearchResult) === 'undefined') {
Woyama.Web.Services.RebateSearchResult=gtc("RebateSearchResult:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.RebateSearchResult.registerClass('Woyama.Web.Services.RebateSearchResult');
}
if (typeof(Woyama.Web.Services.PagedResultOfProductRebateWrapperZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfProductRebateWrapperZgwOIm6f=gtc("PagedResultOfProductRebateWrapperZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfProductRebateWrapperZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfProductRebateWrapperZgwOIm6f');
}
if (typeof(Woyama.Web.Services.ProductRebateWrapper) === 'undefined') {
Woyama.Web.Services.ProductRebateWrapper=gtc("ProductRebateWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.ProductRebateWrapper.registerClass('Woyama.Web.Services.ProductRebateWrapper');
}
if (typeof(Woyama.Web.Services.PagedResultOfCouponGroupZgwOIm6f) === 'undefined') {
Woyama.Web.Services.PagedResultOfCouponGroupZgwOIm6f=gtc("PagedResultOfCouponGroupZgwOIm6f:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.PagedResultOfCouponGroupZgwOIm6f.registerClass('Woyama.Web.Services.PagedResultOfCouponGroupZgwOIm6f');
}
if (typeof(Woyama.Web.Services.CouponGroup) === 'undefined') {
Woyama.Web.Services.CouponGroup=gtc("CouponGroup:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.CouponGroup.registerClass('Woyama.Web.Services.CouponGroup');
}
if (typeof(Woyama.Web.Services.CouponWrapper) === 'undefined') {
Woyama.Web.Services.CouponWrapper=gtc("CouponWrapper:http://schemas.datacontract.org/2004/07/Woyama.Web.Services");
Woyama.Web.Services.CouponWrapper.registerClass('Woyama.Web.Services.CouponWrapper');
}
Type.registerNamespace('System.Collections.Generic');
if (typeof(System.Collections.Generic.KeyValuePairOfstringArrayOfCouponWrapper4L3ioJjx) === 'undefined') {
System.Collections.Generic.KeyValuePairOfstringArrayOfCouponWrapper4L3ioJjx=gtc("KeyValuePairOfstringArrayOfCouponWrapper4L3ioJjx:http://schemas.datacontract.org/2004/07/System.Collections.Generic");
System.Collections.Generic.KeyValuePairOfstringArrayOfCouponWrapper4L3ioJjx.registerClass('System.Collections.Generic.KeyValuePairOfstringArrayOfCouponWrapper4L3ioJjx');
}
if (typeof(Woyama.Web.Services.TypeOfProducts) === 'undefined') {
Woyama.Web.Services.TypeOfProducts = function() { throw Error.invalidOperation(); }
Woyama.Web.Services.TypeOfProducts.prototype = {All: 0,Popular: 1,Fresh: 2,Discount: 3,CheapUsed: 4,Value: 5}
Woyama.Web.Services.TypeOfProducts.registerEnum('Woyama.Web.Services.TypeOfProducts', true);
}
if (typeof(Woyama.Web.Services.ErrorCode) === 'undefined') {
Woyama.Web.Services.ErrorCode = function() { throw Error.invalidOperation(); }
Woyama.Web.Services.ErrorCode.prototype = {Success: 0,NoAuth: 1,AuthFailed: 2,Exception: 3,InvalidParam: 4,Timeout: 5}
Woyama.Web.Services.ErrorCode.registerEnum('Woyama.Web.Services.ErrorCode', true);
}
Type.registerNamespace('Woyama.Facilities');
if (typeof(Woyama.Facilities.OfferType) === 'undefined') {
Woyama.Facilities.OfferType = function() { throw Error.invalidOperation(); }
Woyama.Facilities.OfferType.prototype = {None: 0,Retail: 1,Auction: 2,Classifieds: 3}
Woyama.Facilities.OfferType.registerEnum('Woyama.Facilities.OfferType', true);
}
Type.registerNamespace('Woyama.BusinessLogic');
if (typeof(Woyama.BusinessLogic.FilterType) === 'undefined') {
Woyama.BusinessLogic.FilterType = function() { throw Error.invalidOperation(); }
Woyama.BusinessLogic.FilterType.prototype = {String: 0,Numeric: 1,Rating: 2,Time: 3,Boolean: 4,IntConstant: 5}
Woyama.BusinessLogic.FilterType.registerEnum('Woyama.BusinessLogic.FilterType', true);
}
