Files
InventoryTracker/InventoryTraker.Web/js/report/MonthlyInventoryReportController.js
T

11 lines
347 B
JavaScript

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