UASBatchPutOnProperty.js 380 B

12345678910
  1. define([ 'ngResource'], function() {
  2. angular.module('UASBatchPutOnPropertyModule', [ 'ngResource']).factory('UASBatchPutOnPropertyServices', ['$resource' , function($resource) {
  3. return $resource('UASBatchPutOnProperty', {}, {
  4. save: {
  5. url : 'UASBatchPutOnProperty/save',
  6. method : 'POST'
  7. }
  8. });
  9. }]);
  10. });