/**
* @ngdoc dashboard
* @name DashboardCtrl
* @module s4c.components.dashboard.DashboardCtrl
*
* @description Controller do módulo de dashboard
*
*
*/
(function () {
'use strict';
/**
* @method DashboardCtrl
*
* @param {*} $scope
* @param {*} DetalhamentoService
* @param {*} AuthService
* @param {*} $window
* @param {*} localize
* @param {*} $timeout
*/
function DashboardCtrl($scope, DetalhamentoService, AuthService, $window, localize, $timeout) {
}
DashboardCtrl.$inject = [
'$scope',
'DetalhamentoService',
'AuthService',
'$window',
'localize',
'$timeout'
];
angular.module('s4c.controllers.DashboardCtrl', [])
.controller('DashboardCtrl', DashboardCtrl);
}());