"use strict";
(function () {
'use strict';
angular.module('personModule')
.controller('PersonProfileController', ['$scope', '$stateParams',
function ($scope, $stateParams) {
$scope.personId = $stateParams.id;
}
]);
})();