EmpviewServices.Services.js 250 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12
'use strict'

angular.module('Empview').factory('EmpviewServices', function($resource){
  return {
    RestMcomProfile: $resource('/hr/api/company/mcomprofile/restmcomprofile', {
    }, {
      getQuery: {
        method: 'GET'
      }
    })
  }
})