/** * Created by robin on 11/1/15. */ angular.module('app') .controller('CourseController', ['$scope', '$mdDialog', 'course', 'DataShareBusiness', function($scope, $mdDialog, course, DataShareBusiness) { $scope.course = course; $scope.dateFormat = DataShareBusiness.dateFormat; $scope.timeFormat = DataShareBusiness.TimeFormat; $scope.close = function() { $mdDialog.cancel(); }; }]);