var TicketingWebsiteController = /** @class */ (function () {
    function TicketingWebsiteController($scope, $http, $log, $routeParams, $q) {
        this.test = "Hello World!";
        this.scope = $scope;
        this.http = $http;
        this.log = $log;
        this.routeParams = $routeParams;
        this.q = $q;
        $scope.master = this;
        this.getTest();
    }
    TicketingWebsiteController.prototype.getTest = function () {
        this.log.info("Master Scope");
    };
    return TicketingWebsiteController;
}());
///angular.module('ticketingWebsite').controller('TicketingWebsiteController', TicketingWebsiteController);
//# sourceMappingURL=ticketing-website.controller.js.map