(function(){
var serviceNamespace = abp.utils.createNamespace(abp, 'services.front.downloadFrontEnd');
serviceNamespace.getContentListByPagedAsync = function(input, ajaxParams) {
return abp.ajax($.extend({
url: abp.appPath + 'api/services/front/downloadFrontEnd/GetContentListByPagedAsync',
type: 'POST',
data: JSON.stringify(input)
}, ajaxParams));
};
serviceNamespace.getDownloadListByPagedAsync = function(input, ajaxParams) {
return abp.ajax($.extend({
url: abp.appPath + 'api/services/front/downloadFrontEnd/GetDownloadListByPagedAsync',
type: 'POST',
data: JSON.stringify(input)
}, ajaxParams));
};
if(typeof define === 'function' && define.amd){
define(function (require, exports, module) {
return {
'getContentListByPagedAsync' : serviceNamespace.getContentListByPagedAsync,
'getDownloadListByPagedAsync' : serviceNamespace.getDownloadListByPagedAsync
};
});
}
})();