1234567891011121314151617181920 |
- /**
- * Created by robin on 12/12/16.
- */
-
- (function () {
- 'use strict';
-
- angular.module('appSdk')
- .factory('feedBusiness', ['feedDataAccess', function (feedDataAccess) {
-
- var Business = {};
-
- Business.get = function(luBusyGroups)
- {
- return feedDataAccess.get(luBusyGroups);
- };
-
- return Business;
- }]);
- })();
|