For sharing data between AngularJS controllers.
Are you interested in learning Angularjs from the basics! Here's the right video for you on Angularjs provided by Intellipaat:
You can use the following code:-
.controller('CadastroController', ['$scope', 'RouteSharedScope',
function($scope, routeSharedScope) {
var customerScope = routeSharedScope.scopeFor('/Customer');
}
])