123456789101112131415 |
- /**
- * Created by robin on 12/12/16.
- */
-
- (function () {
- 'use strict';
-
- angular.module('appSdk')
- .factory('pkguidsBusiness', ['luWebApiCrudBusiness', 'pkguidsDataAccess', function (luWebApiCrudBusiness, pkguidsDataAccess) {
-
- var Business = luWebApiCrudBusiness.create(pkguidsDataAccess);
-
- return Business;
- }]);
- })();
|