MyApp

<back to all web services

CreateContact

Talent
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using MyApp.ServiceModel;

namespace MyApp.ServiceModel
{
    public partial class AppUser
    {
        public virtual string Id { get; set; }
        public virtual string FirstName { get; set; }
        public virtual string LastName { get; set; }
        public virtual string DisplayName { get; set; }
        public virtual string ProfileUrl { get; set; }
    }

    public partial class Contact
    {
        public Contact()
        {
            Skills = new List<string>{};
            Applications = new List<JobApplication>{};
        }

        public virtual int Id { get; set; }
        [Computed]
        public virtual string DisplayName { get; set; }

        public virtual string ProfileUrl { get; set; }
        public virtual string FirstName { get; set; }
        public virtual string LastName { get; set; }
        public virtual int? SalaryExpectation { get; set; }
        public virtual string JobType { get; set; }
        public virtual int AvailabilityWeeks { get; set; }
        public virtual EmploymentType PreferredWorkType { get; set; }
        public virtual string PreferredLocation { get; set; }
        public virtual string Email { get; set; }
        public virtual string Phone { get; set; }
        public virtual List<string> Skills { get; set; }
        public virtual string About { get; set; }
        public virtual List<JobApplication> Applications { get; set; }
    }

    public partial class CreateContact
        : ICreateDb<Contact>
    {
        [Validate("NotEmpty")]
        public virtual string FirstName { get; set; }

        [Validate("NotEmpty")]
        public virtual string LastName { get; set; }

        public virtual string ProfileUrl { get; set; }
        public virtual int? SalaryExpectation { get; set; }
        [Validate("NotEmpty")]
        public virtual string JobType { get; set; }

        public virtual int AvailabilityWeeks { get; set; }
        public virtual EmploymentType PreferredWorkType { get; set; }
        [Validate("NotEmpty")]
        public virtual string PreferredLocation { get; set; }

        [Validate("NotEmpty")]
        public virtual string Email { get; set; }

        public virtual string Phone { get; set; }
        public virtual List<string> Skills { get; set; }
        public virtual string About { get; set; }
    }

    public enum EmploymentType
    {
        FullTime,
        PartTime,
        Casual,
        Contract,
    }

    public partial class Interview
        : AuditBase
    {
        public virtual int Id { get; set; }
        public virtual DateTime BookingTime { get; set; }
        [References(typeof(MyApp.ServiceModel.JobApplication))]
        public virtual int JobApplicationId { get; set; }

        [References(typeof(MyApp.ServiceModel.AppUser))]
        public virtual string AppUserId { get; set; }

        public virtual AppUser AppUser { get; set; }
        public virtual JobApplicationStatus? ApplicationStatus { get; set; }
        public virtual string Notes { get; set; }
    }

    public partial class Job
        : AuditBase
    {
        public Job()
        {
            Applications = new List<JobApplication>{};
        }

        public virtual int Id { get; set; }
        public virtual string Title { get; set; }
        public virtual EmploymentType EmploymentType { get; set; }
        public virtual string Company { get; set; }
        public virtual string Location { get; set; }
        public virtual int SalaryRangeLower { get; set; }
        public virtual int SalaryRangeUpper { get; set; }
        public virtual string Description { get; set; }
        public virtual List<JobApplication> Applications { get; set; }
        public virtual DateTime Closing { get; set; }
    }

    public partial class JobApplication
    {
        public JobApplication()
        {
            Comments = new List<JobApplicationComment>{};
            Attachments = new List<JobApplicationAttachment>{};
            Events = new List<JobApplicationEvent>{};
        }

        public virtual int Id { get; set; }
        [References(typeof(MyApp.ServiceModel.Job))]
        public virtual int JobId { get; set; }

        [References(typeof(MyApp.ServiceModel.Contact))]
        public virtual int ContactId { get; set; }

        public virtual Job Position { get; set; }
        public virtual Contact Applicant { get; set; }
        public virtual List<JobApplicationComment> Comments { get; set; }
        public virtual DateTime AppliedDate { get; set; }
        public virtual JobApplicationStatus ApplicationStatus { get; set; }
        public virtual List<JobApplicationAttachment> Attachments { get; set; }
        public virtual List<JobApplicationEvent> Events { get; set; }
        public virtual PhoneScreen PhoneScreen { get; set; }
        public virtual Interview Interview { get; set; }
        public virtual JobOffer JobOffer { get; set; }
    }

    public partial class JobApplicationAttachment
    {
        public virtual int Id { get; set; }
        [References(typeof(MyApp.ServiceModel.JobApplication))]
        public virtual int JobApplicationId { get; set; }

        public virtual string FileName { get; set; }
        public virtual string FilePath { get; set; }
        public virtual string ContentType { get; set; }
        public virtual long ContentLength { get; set; }
    }

    public partial class JobApplicationComment
        : AuditBase
    {
        public virtual int Id { get; set; }
        [References(typeof(MyApp.ServiceModel.AppUser))]
        public virtual string AppUserId { get; set; }

        public virtual AppUser AppUser { get; set; }
        [References(typeof(MyApp.ServiceModel.JobApplication))]
        public virtual int JobApplicationId { get; set; }

        public virtual string Comment { get; set; }
    }

    public partial class JobApplicationEvent
        : AuditBase
    {
        public virtual int Id { get; set; }
        [References(typeof(MyApp.ServiceModel.JobApplication))]
        public virtual int JobApplicationId { get; set; }

        [References(typeof(MyApp.ServiceModel.AppUser))]
        public virtual string AppUserId { get; set; }

        public virtual AppUser AppUser { get; set; }
        public virtual string Description { get; set; }
        public virtual JobApplicationStatus? Status { get; set; }
        public virtual DateTime EventDate { get; set; }
    }

    public enum JobApplicationStatus
    {
        Applied,
        PhoneScreening,
        PhoneScreeningCompleted,
        Interview,
        InterviewCompleted,
        Offer,
        Disqualified,
    }

    public partial class JobOffer
        : AuditBase
    {
        public virtual int Id { get; set; }
        public virtual int SalaryOffer { get; set; }
        public virtual string Currency { get; set; }
        [References(typeof(MyApp.ServiceModel.JobApplication))]
        public virtual int JobApplicationId { get; set; }

        [References(typeof(MyApp.ServiceModel.AppUser))]
        public virtual string AppUserId { get; set; }

        public virtual AppUser AppUser { get; set; }
        public virtual string Notes { get; set; }
    }

    public partial class PhoneScreen
        : AuditBase
    {
        public virtual int Id { get; set; }
        [References(typeof(MyApp.ServiceModel.AppUser))]
        public virtual string AppUserId { get; set; }

        public virtual AppUser AppUser { get; set; }
        [References(typeof(MyApp.ServiceModel.JobApplication))]
        public virtual int JobApplicationId { get; set; }

        public virtual JobApplicationStatus? ApplicationStatus { get; set; }
        public virtual string Notes { get; set; }
    }

}

namespace ServiceStack
{
    [DataContract]
    public partial class AuditBase
    {
        [DataMember(Order=1)]
        public virtual DateTime CreatedDate { get; set; }

        [DataMember(Order=2)]
        [Required]
        public virtual string CreatedBy { get; set; }

        [DataMember(Order=3)]
        public virtual DateTime ModifiedDate { get; set; }

        [DataMember(Order=4)]
        [Required]
        public virtual string ModifiedBy { get; set; }

        [DataMember(Order=5)]
        public virtual DateTime? DeletedDate { get; set; }

        [DataMember(Order=6)]
        public virtual string DeletedBy { get; set; }
    }

}

C# CreateContact DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/CreateContact HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<CreateContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <About>String</About>
  <AvailabilityWeeks>0</AvailabilityWeeks>
  <Email>String</Email>
  <FirstName>String</FirstName>
  <JobType>String</JobType>
  <LastName>String</LastName>
  <Phone>String</Phone>
  <PreferredLocation>String</PreferredLocation>
  <PreferredWorkType>FullTime</PreferredWorkType>
  <ProfileUrl>String</ProfileUrl>
  <SalaryExpectation>0</SalaryExpectation>
  <Skills xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </Skills>
</CreateContact>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<Contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <About>String</About>
  <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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>String</d8p1: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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>String</d5p1: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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>String</d8p1: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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </Skills>
</Contact>