(function () { 'use strict'; window.app.controller('MonthlyInventoryReportController', MonthlyInventoryReportController); MonthlyInventoryReportController.$inject = ['$scope', 'reportSvc']; function MonthlyInventoryReportController($scope, reportSvc) { var vm = this; vm.monthlyInventoryData = reportSvc.monthlyInventoryData; } })();