(function () { 'use strict'; angular .module('codeAPLEBOX.client.user.employee.customer.customerlist') .config(customerlistConfig); /* @ngInject */ function customerlistConfig($stateProvider) { $stateProvider // 로그인 안된 상태 .state('employee.customerlist', { url: '/employee/customerlist', views: { 'content': { templateUrl: 'app/layout/user/employee/customer/customerlist/customerlist.tmpl.html', controller: 'customerlistController', controllerAs: 'vm' } } }); } })();