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.

DataShareBusiness.js 254B

12345678910111213
  1. (function()
  2. {
  3. angular.module('appSdk')
  4. .factory('DataShareBusiness', ['$q', function ($q) {
  5. var data = {
  6. Groups: null,
  7. CurrentGroup: null
  8. };
  9. return data;
  10. }]);
  11. })();