| 1234567891011121314151617181920 | /**
 * Created by robin on 11/1/15.
 */
angular.module('app')
    .controller('FreeRoomController', ['$scope', '$mdDialog', 'DataShareBusiness',
        function($scope, $mdDialog, DataShareBusiness) {
            $scope.dateFormat = DataShareBusiness.DateFormat;
            $scope.timeFormat = DataShareBusiness.TimeFormat;
            $scope.Search = {
                Begin: new Date(),
                End: new Date()
            };
            $scope.close = function()
            {
                $mdDialog.cancel();
            };
        }]);
 |