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