fboClient.service.js
1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
(function() {
'use strict';
angular.module('acuefuel')
.service('FBOClient', ['$rootScope', '$q', '$http', 'BE', FBOClient])
function FBOClient($rootScope, $q, $http, BE) {
this.getALlFBOList = function(data) {
var deferred = $q.defer();
$http({
method : 'GET',
url : BE.url +'/account/user/getAllFBOs',
headers : {'Content-Type': 'application/json'},
})
.success(function(result) {
deferred.resolve(result);
})
return deferred.promise;
}
this.getAllFlightDeptList = function(data) {
var deferred = $q.defer();
$http({
method : 'GET',
url : BE.url +'/account/user/getAllFlightDept',
headers : {'Content-Type': 'application/json'},
})
.success(function(result) {
deferred.resolve(result);
})
return deferred.promise;
}
}
})();