myems-admin/app/services/settings/combinedequipment/combinedequipment.service.js
'use strict';
app.factory('CombinedEquipmentService', function($http) {
return {
getAllCombinedEquipments:function(headers, callback){
$http.get(getAPI()+'combinedequipments', {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
searchCombinedEquipments: function(query, headers, callback) {
$http.get(getAPI()+'combinedequipments', { params: { q: query } }, {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
addCombinedEquipment: function(combinedequipment, headers, callback) {
$http.post(getAPI()+'combinedequipments',{data:combinedequipment}, {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
editCombinedEquipment: function(combinedequipment, headers, callback) {
$http.put(getAPI()+'combinedequipments/'+combinedequipment.id,{data:combinedequipment}, {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
deleteCombinedEquipment: function(combinedequipment, headers, callback) {
$http.delete(getAPI()+'combinedequipments/'+combinedequipment.id, {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
exportCombinedEquipment: function(combinedequipment, headers, callback) {
$http.get(getAPI()+'combinedequipments/'+combinedequipment.id+'/export', {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
importCombinedEquipment: function(importdata, headers, callback) {
$http.post(getAPI()+'combinedequipments/import', JSON.parse(importdata), {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
cloneCombinedEquipment: function(combinedequipment, headers, callback) {
$http.post(getAPI()+'combinedequipments/'+combinedequipment.id+'/clone', {data:null}, {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
}
};
});