You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pkguids.business.js 364B

123456789101112131415
  1. /**
  2. * Created by robin on 12/12/16.
  3. */
  4. (function () {
  5. 'use strict';
  6. angular.module('appSdk')
  7. .factory('pkguidsBusiness', ['luWebApiCrudBusiness', 'pkguidsDataAccess', function (luWebApiCrudBusiness, pkguidsDataAccess) {
  8. var Business = luWebApiCrudBusiness.create(pkguidsDataAccess);
  9. return Business;
  10. }]);
  11. })();