Files
InventoryTracker/InventoryTraker.Web/js/report/MonthlyInventoryReportController.js
T
2016-09-19 11:05:22 -04:00

12 lines
399 B
JavaScript

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