-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployees.xml
34 lines (34 loc) · 889 Bytes
/
employees.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<employees xmlns=''>
<employee id="2">
<firstName>Lokesh</firstName>
<lastName>Gupta</lastName>
<department>
<id>101</id>
<name>IT</name>
</department>
</employee>
<employee id="3">
<lastName>Kolenchisky</lastName>
<department>
<id>103</id>
<name>FINANCE</name>
</department>
</employee>
<employee id="4">
<firstName>Amit</firstName>
<lastName>Jain</lastName>
<department>
<id>104</id>
<name>HR</name>
</department>
</employee>
<employee id="10">
<firstName>Gary</firstName>
<lastName>Kasporov</lastName>
<department>
<id>110</id>
<name>IT</name>
</department>
</employee>
</employees>