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-business.js 374B

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