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

12 lines
373 B
JavaScript

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