loadStore.php
916 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
40
41
42
43
44
45
{
employees: [
{
employeeId: 1,
firstName: 'Joe',
lastName: 'Smith',
department: 'Management',
title: 'CEO',
telephone: '240-555-1287',
office: 'DC'
},{
employeeId: 2,
firstName: 'George',
lastName: 'Loram',
department: 'Sales',
title: 'VP of Sales',
telephone: '240-555-1287',
office: 'DC'
},{
employeeId: 3,
firstName: 'Sally',
lastName: 'Beogagi',
department: 'Human Resources',
title: 'Senior Hiring Agent',
telephone: '443-555-1220',
office: 'MD'
},{
employeeId: 4,
firstName: 'Billy',
lastName: 'Diarmaid',
department: 'Human Resources',
title: 'Hiring Agent',
telephone: '443-555-2890',
office: 'MD'
},{
employeeId: 5,
firstName: 'Bruno',
lastName: 'Domingos',
department: 'Technology',
title: 'CTO',
telephone: '443-555-2890',
office: 'MD'
}
]
}