| 12345678910111213 | angular.module('app')
    .controller('articlesEditController', ['$scope', '$stateParams', 'articlesBusiness', 'editControllerBuilder',
        function ($scope, $stateParams, articlesBusiness, editControllerBuilder) {
            $scope.business = articlesBusiness;
            $scope.itemType = 'articles';
            editControllerBuilder.create($scope, $stateParams);
            $scope.setupExitConfirm();
            $scope.init($stateParams);
        }]);
 |