-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
navjotsinghprince
committed
Feb 8, 2025
1 parent
8a0c9c8
commit dcbb07f
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Company> | ||
<Employees> | ||
<Employee> | ||
<ID>001</ID> | ||
<Name>John Doe</Name> | ||
<Position>Software Engineer</Position> | ||
<Department>Development</Department> | ||
<Email>[email protected]</Email> | ||
</Employee> | ||
<Employee> | ||
<ID>002</ID> | ||
<Name>Jane Smith</Name> | ||
<Position>Project Manager</Position> | ||
<Department>Management</Department> | ||
<Email>[email protected]</Email> | ||
</Employee> | ||
<Employee> | ||
<ID>003</ID> | ||
<Name>Emily Davis</Name> | ||
<Position>UI/UX Designer</Position> | ||
<Department>Design</Department> | ||
<Email>[email protected]</Email> | ||
</Employee> | ||
</Employees> | ||
<Projects> | ||
<Project> | ||
<ID>P001</ID> | ||
<Name>Website Redesign</Name> | ||
<Manager>Jane Smith</Manager> | ||
<Deadline>2025-03-15</Deadline> | ||
<Status>In Progress</Status> | ||
</Project> | ||
<Project> | ||
<ID>P002</ID> | ||
<Name>Mobile App Development</Name> | ||
<Manager>John Doe</Manager> | ||
<Deadline>2025-04-30</Deadline> | ||
<Status>Pending</Status> | ||
</Project> | ||
</Projects> | ||
</Company> | ||
|