Skip to content

Instantly share code, notes, and snippets.

View romanvieito's full-sized avatar

Alberto Roman romanvieito

View GitHub Profile
@romanvieito
romanvieito / orderCtrl.js
Last active August 19, 2016 11:15
Order Controller
(function () {
'use strict';
var controllerId = 'orderController';
angular.module('app.customerService')
.controller(controllerId, ['$http', '$scope', '$rootScope', 'lookupsSvc', 'parkingSvc', 'airplaneCustomerSvc', 'fboProfileSvc', 'dataInitService', '$stateParams', '$timeout', orderController]);
function orderController($http, $scope, $rootScope, lookupsSvc, parkingSvc, airplaneCustomerSvc, fboProfileSvc, dataInitService, $stateParams, $timeout) {