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.

lu-dataaccess.js 386B

123456789101112131415161718192021
  1. /**
  2. * Created by robin on 12/11/16.
  3. */
  4. (function () {
  5. 'use strict';
  6. angular.module('luticate2Utils')
  7. .factory('luDataAccess', [function () {
  8. var luDataAccess = {};
  9. luDataAccess.create = function () {
  10. var DataAccess = {};
  11. return DataAccess;
  12. };
  13. return luDataAccess;
  14. }]);
  15. })();