-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRestaurantcontroller.js
92 lines (76 loc) · 1.84 KB
/
Restaurantcontroller.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
app.controller('restaurantsController', ['$scope' function($scope) {
$scope.restaurant = {
id: 1,
name: 'Berns Steakhouse'
address: '1208 S Howard Ave, Tampa, FL 33606'
phone: '813-251-2421'
rating: '5'
comments: 'as;lkfjask;l'
category: 'Restaurant'
id: 2,
name: 'Datz'
address: '2616 S MacDill Ave, Tampa, FL 33629'
phone: '831-831-7000'
rating: '4'
comments: 'asdfasdf'
category: 'Restaurant'
id: 3,
name: 'Wrights Gourmet House'
address: '1200 S Dale Mabry Hwy, Tampa, FL 33629'
phone: '813-253-3838'
rating: '5'
comments: 'asdfas'
category: 'Restaurant'
id: 4,
name: 'PDQ Tampa'
address: '2207 S Dale Mabry Hwy'
phone: '813-254-7373'
rating: '3'
comments: 'asfkdladks'
category: 'Restaurant'
id: 5,
name: 'Roy's Hawaiian Fusion'
address: '4342 W Boy Scout Blvd, Tampa, FL 33607'
phone: '813-873-7697'
rating: '4'
comments: 'asdfasdf'
category: 'Restaurant'
app.controller('transportationController', ['$scope' function($scope) {
$scope.transportation = {
id: 1,
name: 'Tampa International Airport'
address: ' 4100 George J Bean Pkwy, Tampa, FL 33607'
phone: '813-870-8700'
rating: '5'
comments: 'alsdkfjas'
category: 'transportation'
id: 2,
name: 'Cab Plus'
address: '4810 N Hale Ave, Tampa, FL 33614'
phone: '813-288-8888'
rating: '3'
comments: 'asdff'
category: 'transportation'
id 3,
name: 'TBARTA Commuter Services'
address: '4350 W Cypress St #700
phone: '813-282-8200'
rating: '2'
comments: 'asdfasdf'
category: 'transportation'
id 4,
name: 'Skyline Limousine Tampa'
address: '1703 N Tampa St #4'
phone: '813-777-2685'
rating: '5'
comments: 'asdfads'
category: 'transportation'
id 5,
name: 'St Pete-Clearwater Airport'
address: ' 14700 Terminal Blvd #221, Clearwater, FL 33762'
phone: '727-453-7800'
rating: '3'
comments: 'asdfadf'
category: 'transportation'
]
};