"use strict";
export class AuditBase {
/** @param {{createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
createdDate;
/** @type {string} */
createdBy;
/** @type {string} */
modifiedDate;
/** @type {string} */
modifiedBy;
/** @type {?string} */
deletedDate;
/** @type {string} */
deletedBy;
}
/** @typedef {'FullTime'|'PartTime'|'Casual'|'Contract'} */
export var EmploymentType;
(function (EmploymentType) {
EmploymentType["FullTime"] = "FullTime"
EmploymentType["PartTime"] = "PartTime"
EmploymentType["Casual"] = "Casual"
EmploymentType["Contract"] = "Contract"
})(EmploymentType || (EmploymentType = {}));
export class Job extends AuditBase {
/** @param {{id?:number,title?:string,employmentType?:EmploymentType,company?:string,location?:string,salaryRangeLower?:number,salaryRangeUpper?:number,description?:string,applications?:JobApplication[],closing?:string,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
title;
/** @type {EmploymentType} */
employmentType;
/** @type {string} */
company;
/** @type {string} */
location;
/** @type {number} */
salaryRangeLower;
/** @type {number} */
salaryRangeUpper;
/** @type {string} */
description;
/** @type {JobApplication[]} */
applications = [];
/** @type {string} */
closing;
}
export class Contact {
/** @param {{id?:number,displayName?:string,profileUrl?:string,firstName?:string,lastName?:string,salaryExpectation?:number,jobType?:string,availabilityWeeks?:number,preferredWorkType?:EmploymentType,preferredLocation?:string,email?:string,phone?:string,skills?:string[],about?:string,applications?:JobApplication[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
displayName;
/** @type {string} */
profileUrl;
/** @type {string} */
firstName;
/** @type {string} */
lastName;
/** @type {?number} */
salaryExpectation;
/** @type {string} */
jobType;
/** @type {number} */
availabilityWeeks;
/** @type {EmploymentType} */
preferredWorkType;
/** @type {string} */
preferredLocation;
/** @type {string} */
email;
/** @type {string} */
phone;
/** @type {?string[]} */
skills;
/** @type {string} */
about;
/** @type {JobApplication[]} */
applications = [];
}
export class AppUser {
/** @param {{id?:string,firstName?:string,lastName?:string,displayName?:string,profileUrl?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
id;
/** @type {?string} */
firstName;
/** @type {?string} */
lastName;
/** @type {?string} */
displayName;
/** @type {?string} */
profileUrl;
}
export class JobApplicationComment extends AuditBase {
/** @param {{id?:number,appUserId?:string,appUser?:AppUser,jobApplicationId?:number,comment?:string,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
appUserId;
/** @type {AppUser} */
appUser;
/** @type {number} */
jobApplicationId;
/** @type {string} */
comment;
}
/** @typedef {'Applied'|'PhoneScreening'|'PhoneScreeningCompleted'|'Interview'|'InterviewCompleted'|'Offer'|'Disqualified'} */
export var JobApplicationStatus;
(function (JobApplicationStatus) {
JobApplicationStatus["Applied"] = "Applied"
JobApplicationStatus["PhoneScreening"] = "PhoneScreening"
JobApplicationStatus["PhoneScreeningCompleted"] = "PhoneScreeningCompleted"
JobApplicationStatus["Interview"] = "Interview"
JobApplicationStatus["InterviewCompleted"] = "InterviewCompleted"
JobApplicationStatus["Offer"] = "Offer"
JobApplicationStatus["Disqualified"] = "Disqualified"
})(JobApplicationStatus || (JobApplicationStatus = {}));
export class JobApplicationAttachment {
/** @param {{id?:number,jobApplicationId?:number,fileName?:string,filePath?:string,contentType?:string,contentLength?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
jobApplicationId;
/** @type {string} */
fileName;
/** @type {string} */
filePath;
/** @type {string} */
contentType;
/** @type {number} */
contentLength;
}
export class JobApplicationEvent extends AuditBase {
/** @param {{id?:number,jobApplicationId?:number,appUserId?:string,appUser?:AppUser,description?:string,status?:JobApplicationStatus,eventDate?:string,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
jobApplicationId;
/** @type {string} */
appUserId;
/** @type {AppUser} */
appUser;
/** @type {string} */
description;
/** @type {?JobApplicationStatus} */
status;
/** @type {string} */
eventDate;
}
export class PhoneScreen extends AuditBase {
/** @param {{id?:number,appUserId?:string,appUser?:AppUser,jobApplicationId?:number,applicationStatus?:JobApplicationStatus,notes?:string,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
appUserId;
/** @type {AppUser} */
appUser;
/** @type {number} */
jobApplicationId;
/** @type {?JobApplicationStatus} */
applicationStatus;
/** @type {string} */
notes;
}
export class Interview extends AuditBase {
/** @param {{id?:number,bookingTime?:string,jobApplicationId?:number,appUserId?:string,appUser?:AppUser,applicationStatus?:JobApplicationStatus,notes?:string,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
bookingTime;
/** @type {number} */
jobApplicationId;
/** @type {string} */
appUserId;
/** @type {AppUser} */
appUser;
/** @type {?JobApplicationStatus} */
applicationStatus;
/** @type {string} */
notes;
}
export class JobOffer extends AuditBase {
/** @param {{id?:number,salaryOffer?:number,currency?:string,jobApplicationId?:number,appUserId?:string,appUser?:AppUser,notes?:string,createdDate?:string,createdBy?:string,modifiedDate?:string,modifiedBy?:string,deletedDate?:string,deletedBy?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
salaryOffer;
/** @type {string} */
currency;
/** @type {number} */
jobApplicationId;
/** @type {string} */
appUserId;
/** @type {AppUser} */
appUser;
/** @type {string} */
notes;
}
export class JobApplication {
/** @param {{id?:number,jobId?:number,contactId?:number,position?:Job,applicant?:Contact,comments?:JobApplicationComment[],appliedDate?:string,applicationStatus?:JobApplicationStatus,attachments?:JobApplicationAttachment[],events?:JobApplicationEvent[],phoneScreen?:PhoneScreen,interview?:Interview,jobOffer?:JobOffer}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
jobId;
/** @type {number} */
contactId;
/** @type {Job} */
position;
/** @type {Contact} */
applicant;
/** @type {JobApplicationComment[]} */
comments = [];
/** @type {string} */
appliedDate;
/** @type {JobApplicationStatus} */
applicationStatus;
/** @type {JobApplicationAttachment[]} */
attachments = [];
/** @type {JobApplicationEvent[]} */
events = [];
/** @type {PhoneScreen} */
phoneScreen;
/** @type {Interview} */
interview;
/** @type {JobOffer} */
jobOffer;
}
export class CreateJobApplication {
/** @param {{jobId?:number,contactId?:number,appliedDate?:string,applicationStatus?:JobApplicationStatus,attachments?:JobApplicationAttachment[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
jobId;
/** @type {number} */
contactId;
/** @type {string} */
appliedDate;
/** @type {JobApplicationStatus} */
applicationStatus;
/** @type {JobApplicationAttachment[]} */
attachments;
}
JavaScript CreateJobApplication DTOs
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>