Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXTREME 13.1 Demos/DXSK8/DXSK8.Phone/data/
Upload File :
Current File : C:/Users/Public/Documents/DXTREME 13.1 Demos/DXSK8/DXSK8.Phone/data/Inventories.js

window.DXSK8 = window.DXSK8 || {};
window.DXSK8.Phone = window.DXSK8.Phone || {};
window.DXSK8.Phone.db = window.DXSK8.Phone.db || {};

(function() {
    var db = {};

    db.loadInventoriesByProduct = function(productId, success, fail) {
        DXSK8.db.Inventorys
            .load({
                filter: [
                    ["Store.Id", 1],
                    ["Product.Id", productId]
                ]
            })
            .done(success)
            .fail(fail);
    };

    $.extend(DXSK8.Phone.db, db);
})();