﻿function GetProdutos() {
    Litoarte.Web.Ajax.WSAjax.GetProdutos(AjaxFinishProdutos)
}
function GetProdutosByCategoryID(id) {
    Litoarte.Web.Ajax.WSAjax.GetProdutosByCategoryID(id, AjaxFinishProdutos)
}
function GetProdutosBySubcategoryID(id) {
    
}
function GetProdutosByCategoryAndSubcategoryID(CategoryID, SubcategoryID, PageIndex) {
    Litoarte.Web.Ajax.WSAjax.GetProdutosByCategoryAndSubcategoryID(CategoryID, SubcategoryID, PageIndex, false, AjaxFinishProdutos);
    Litoarte.Web.Ajax.WSAjax.GetProdutosByCategoryAndSubcategoryID(CategoryID, SubcategoryID, PageIndex, true, AjaxFinishProdutosPaging);
}
function GetProdutoByStrBusca(strBusca, pagAtual, pagMaximo) {
    Litoarte.Web.Ajax.WSAjax.GetProdutosByStrBusca(strBusca, pagAtual, pagMaximo, AjaxFinishProdutos);
 }
function AjaxFinishProdutos(result, eventArgs) {
    $get("place_produtos").innerHTML = result;
}
function AjaxFinishProdutosPaging(result, eventArgs) {
    $get("paging").innerHTML = result;
    $get("paging_top").innerHTML = result;
}
