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.

feed.business.js 402B

1234567891011121314151617181920
  1. /**
  2. * Created by robin on 12/12/16.
  3. */
  4. (function () {
  5. 'use strict';
  6. angular.module('appSdk')
  7. .factory('feedBusiness', ['feedDataAccess', function (feedDataAccess) {
  8. var Business = {};
  9. Business.get = function(luBusyGroups)
  10. {
  11. return feedDataAccess.get(luBusyGroups);
  12. };
  13. return Business;
  14. }]);
  15. })();