const std = @import("std");
pub const EmploymentType = enum {
FullTime,
PartTime,
Casual,
Contract,
};
pub const Job = struct {
// @DataMember(Order=1)
createdDate: ?[]const u8 = null,
// @DataMember(Order=2)
// @Required()
createdBy: ?[]const u8 = null,
// @DataMember(Order=3)
modifiedDate: ?[]const u8 = null,
// @DataMember(Order=4)
// @Required()
modifiedBy: ?[]const u8 = null,
// @DataMember(Order=5)
deletedDate: ?[]const u8 = null,
// @DataMember(Order=6)
deletedBy: ?[]const u8 = null,
id: i32 = 0,
title: ?[]const u8 = null,
employmentType: ?EmploymentType = null,
company: ?[]const u8 = null,
location: ?[]const u8 = null,
salaryRangeLower: i32 = 0,
salaryRangeUpper: i32 = 0,
description: ?[]const u8 = null,
applications: []JobApplication = &.{},
closing: ?[]const u8 = null,
};
pub const Contact = struct {
id: i32 = 0,
// @Computed()
displayName: ?[]const u8 = null,
profileUrl: ?[]const u8 = null,
firstName: ?[]const u8 = null,
lastName: ?[]const u8 = null,
salaryExpectation: ?i32 = null,
jobType: ?[]const u8 = null,
availabilityWeeks: i32 = 0,
preferredWorkType: ?EmploymentType = null,
preferredLocation: ?[]const u8 = null,
email: ?[]const u8 = null,
phone: ?[]const u8 = null,
skills: ?[][]const u8 = null,
about: ?[]const u8 = null,
applications: []JobApplication = &.{},
};
pub const AppUser = struct {
id: ?[]const u8 = null,
firstName: ?[]const u8 = null,
lastName: ?[]const u8 = null,
displayName: ?[]const u8 = null,
profileUrl: ?[]const u8 = null,
};
pub const JobApplicationComment = struct {
// @DataMember(Order=1)
createdDate: ?[]const u8 = null,
// @DataMember(Order=2)
// @Required()
createdBy: ?[]const u8 = null,
// @DataMember(Order=3)
modifiedDate: ?[]const u8 = null,
// @DataMember(Order=4)
// @Required()
modifiedBy: ?[]const u8 = null,
// @DataMember(Order=5)
deletedDate: ?[]const u8 = null,
// @DataMember(Order=6)
deletedBy: ?[]const u8 = null,
id: i32 = 0,
// @References(typeof(AppUser))
appUserId: ?[]const u8 = null,
appUser: ?AppUser = null,
// @References(typeof(JobApplication))
jobApplicationId: i32 = 0,
comment: ?[]const u8 = null,
};
pub const JobApplicationStatus = enum {
Applied,
PhoneScreening,
PhoneScreeningCompleted,
Interview,
InterviewCompleted,
Offer,
Disqualified,
};
pub const JobApplicationAttachment = struct {
id: i32 = 0,
// @References(typeof(JobApplication))
jobApplicationId: i32 = 0,
fileName: ?[]const u8 = null,
filePath: ?[]const u8 = null,
contentType: ?[]const u8 = null,
contentLength: i64 = 0,
};
pub const JobApplicationEvent = struct {
// @DataMember(Order=1)
createdDate: ?[]const u8 = null,
// @DataMember(Order=2)
// @Required()
createdBy: ?[]const u8 = null,
// @DataMember(Order=3)
modifiedDate: ?[]const u8 = null,
// @DataMember(Order=4)
// @Required()
modifiedBy: ?[]const u8 = null,
// @DataMember(Order=5)
deletedDate: ?[]const u8 = null,
// @DataMember(Order=6)
deletedBy: ?[]const u8 = null,
id: i32 = 0,
// @References(typeof(JobApplication))
jobApplicationId: i32 = 0,
// @References(typeof(AppUser))
appUserId: ?[]const u8 = null,
appUser: ?AppUser = null,
description: ?[]const u8 = null,
status: ?JobApplicationStatus = null,
eventDate: ?[]const u8 = null,
};
pub const PhoneScreen = struct {
// @DataMember(Order=1)
createdDate: ?[]const u8 = null,
// @DataMember(Order=2)
// @Required()
createdBy: ?[]const u8 = null,
// @DataMember(Order=3)
modifiedDate: ?[]const u8 = null,
// @DataMember(Order=4)
// @Required()
modifiedBy: ?[]const u8 = null,
// @DataMember(Order=5)
deletedDate: ?[]const u8 = null,
// @DataMember(Order=6)
deletedBy: ?[]const u8 = null,
id: i32 = 0,
// @References(typeof(AppUser))
appUserId: ?[]const u8 = null,
appUser: ?AppUser = null,
// @References(typeof(JobApplication))
jobApplicationId: i32 = 0,
applicationStatus: ?JobApplicationStatus = null,
notes: ?[]const u8 = null,
};
pub const Interview = struct {
// @DataMember(Order=1)
createdDate: ?[]const u8 = null,
// @DataMember(Order=2)
// @Required()
createdBy: ?[]const u8 = null,
// @DataMember(Order=3)
modifiedDate: ?[]const u8 = null,
// @DataMember(Order=4)
// @Required()
modifiedBy: ?[]const u8 = null,
// @DataMember(Order=5)
deletedDate: ?[]const u8 = null,
// @DataMember(Order=6)
deletedBy: ?[]const u8 = null,
id: i32 = 0,
bookingTime: ?[]const u8 = null,
// @References(typeof(JobApplication))
jobApplicationId: i32 = 0,
// @References(typeof(AppUser))
appUserId: ?[]const u8 = null,
appUser: ?AppUser = null,
applicationStatus: ?JobApplicationStatus = null,
notes: ?[]const u8 = null,
};
pub const JobOffer = struct {
// @DataMember(Order=1)
createdDate: ?[]const u8 = null,
// @DataMember(Order=2)
// @Required()
createdBy: ?[]const u8 = null,
// @DataMember(Order=3)
modifiedDate: ?[]const u8 = null,
// @DataMember(Order=4)
// @Required()
modifiedBy: ?[]const u8 = null,
// @DataMember(Order=5)
deletedDate: ?[]const u8 = null,
// @DataMember(Order=6)
deletedBy: ?[]const u8 = null,
id: i32 = 0,
salaryOffer: i32 = 0,
currency: ?[]const u8 = null,
// @References(typeof(JobApplication))
jobApplicationId: i32 = 0,
// @References(typeof(AppUser))
appUserId: ?[]const u8 = null,
appUser: ?AppUser = null,
notes: ?[]const u8 = null,
};
pub const JobApplication = struct {
id: i32 = 0,
// @References(typeof(Job))
jobId: i32 = 0,
// @References(typeof(Contact))
contactId: i32 = 0,
position: ?Job = null,
applicant: ?Contact = null,
comments: []JobApplicationComment = &.{},
appliedDate: ?[]const u8 = null,
applicationStatus: ?JobApplicationStatus = null,
attachments: []JobApplicationAttachment = &.{},
events: []JobApplicationEvent = &.{},
phoneScreen: ?PhoneScreen = null,
interview: ?Interview = null,
jobOffer: ?JobOffer = null,
};
pub const CreateJobApplication = struct {
// @Validate(Validator="GreaterThan(0)")
jobId: i32 = 0,
// @Validate(Validator="GreaterThan(0)")
contactId: i32 = 0,
appliedDate: ?[]const u8 = null,
applicationStatus: ?JobApplicationStatus = null,
attachments: []JobApplicationAttachment = &.{},
};
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/CreateJobApplication HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateJobApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<ContactId>0</ContactId>
<JobId>0</JobId>
</CreateJobApplication>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<JobApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<Applicant>
<About>String</About>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications>
<JobApplication>
<Applicant i:nil="true" />
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications i:nil="true" />
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d9p1:string>String</d9p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications i:nil="true" />
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d12p1:string>String</d12p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications i:nil="true" />
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d6p1:string>String</d6p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications i:nil="true" />
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d12p1:string>String</d12p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications i:nil="true" />
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d9p1:string>String</d9p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications i:nil="true" />
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d12p1:string>String</d12p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications i:nil="true" />
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications i:nil="true" />
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d12p1:string>String</d12p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications i:nil="true" />
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d9p1:string>String</d9p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications i:nil="true" />
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d12p1:string>String</d12p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications i:nil="true" />
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d6p1:string>String</d6p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications i:nil="true" />
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d12p1:string>String</d12p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications i:nil="true" />
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d9p1:string>String</d9p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<Applications>
<JobApplication>
<Applicant>
<About>String</About>
<Applications i:nil="true" />
<AvailabilityWeeks>0</AvailabilityWeeks>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<JobType>String</JobType>
<LastName>String</LastName>
<Phone>String</Phone>
<PreferredLocation>String</PreferredLocation>
<PreferredWorkType>FullTime</PreferredWorkType>
<ProfileUrl>String</ProfileUrl>
<SalaryExpectation>0</SalaryExpectation>
<Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d12p1:string>String</d12p1:string>
</Skills>
</Applicant>
<ApplicationStatus>Applied</ApplicationStatus>
<AppliedDate>0001-01-01T00:00:00</AppliedDate>
<Attachments>
<JobApplicationAttachment>
<ContentLength>0</ContentLength>
<ContentType>String</ContentType>
<FileName>String</FileName>
<FilePath>String</FilePath>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationAttachment>
</Attachments>
<Comments>
<JobApplicationComment>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Comment>String</Comment>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
</JobApplicationComment>
</Comments>
<ContactId>0</ContactId>
<Events>
<JobApplicationEvent>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Description>String</Description>
<EventDate>0001-01-01T00:00:00</EventDate>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Status>Applied</Status>
</JobApplicationEvent>
</Events>
<Id>0</Id>
<Interview>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<BookingTime>0001-01-01T00:00:00</BookingTime>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</Interview>
<JobId>0</JobId>
<JobOffer>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>
<PhoneScreen>
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<ApplicationStatus>Applied</ApplicationStatus>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
</PhoneScreen>
<Position i:nil="true" />
</JobApplication>
</Applications>
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>
</Applications>
<Closing>0001-01-01T00:00:00</Closing>
<Company>String</Company>
<Description>String</Description>
<EmploymentType>FullTime</EmploymentType>
<Id>0</Id>
<Location>String</Location>
<SalaryRangeLower>0</SalaryRangeLower>
<SalaryRangeUpper>0</SalaryRangeUpper>
<Title>String</Title>
</Position>
</JobApplication>