MyApp

<back to all web services

CreateJobApplication

Talent
import 'package:servicestack/servicestack.dart';

// @DataContract
abstract class AuditBase
{
    // @DataMember(Order=1)
    DateTime? createdDate;

    // @DataMember(Order=2)
    // @required()
    String createdBy = "";

    // @DataMember(Order=3)
    DateTime? modifiedDate;

    // @DataMember(Order=4)
    // @required()
    String modifiedBy = "";

    // @DataMember(Order=5)
    DateTime? deletedDate;

    // @DataMember(Order=6)
    String? deletedBy;

    AuditBase({this.createdDate,this.createdBy="",this.modifiedDate,this.modifiedBy="",this.deletedDate,this.deletedBy});
    AuditBase.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        createdDate = JsonConverters.fromJson(json['createdDate'],'DateTime',context!) ?? DateTime(0);
        createdBy = json['createdBy'] ?? "";
        modifiedDate = JsonConverters.fromJson(json['modifiedDate'],'DateTime',context!) ?? DateTime(0);
        modifiedBy = json['modifiedBy'] ?? "";
        deletedDate = JsonConverters.fromJson(json['deletedDate'],'DateTime',context!);
        deletedBy = json['deletedBy'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'createdDate': JsonConverters.toJson(createdDate,'DateTime',context!),
        'createdBy': createdBy,
        'modifiedDate': JsonConverters.toJson(modifiedDate,'DateTime',context!),
        'modifiedBy': modifiedBy,
        'deletedDate': JsonConverters.toJson(deletedDate,'DateTime',context!),
        'deletedBy': deletedBy
    };

    getTypeName() => "AuditBase";
    TypeContext? context = _ctx;
}

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

class Job extends AuditBase implements IConvertible
{
    int id = 0;
    String title = "";
    EmploymentType? employmentType;
    String company = "";
    String location = "";
    int salaryRangeLower = 0;
    int salaryRangeUpper = 0;
    String description = "";
    List<JobApplication> applications = [];
    DateTime? closing;

    Job({this.id=0,this.title="",this.employmentType,this.company="",this.location="",this.salaryRangeLower=0,this.salaryRangeUpper=0,this.description="",this.applications=const [],this.closing});
    Job.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'] ?? 0;
        title = json['title'] ?? "";
        employmentType = JsonConverters.fromJson(json['employmentType'],'EmploymentType',context!);
        company = json['company'] ?? "";
        location = json['location'] ?? "";
        salaryRangeLower = json['salaryRangeLower'] ?? 0;
        salaryRangeUpper = json['salaryRangeUpper'] ?? 0;
        description = json['description'] ?? "";
        applications = JsonConverters.fromJson(json['applications'],'List<JobApplication>',context!) ?? [];
        closing = JsonConverters.fromJson(json['closing'],'DateTime',context!) ?? DateTime(0);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'title': title,
        'employmentType': JsonConverters.toJson(employmentType,'EmploymentType',context!),
        'company': company,
        'location': location,
        'salaryRangeLower': salaryRangeLower,
        'salaryRangeUpper': salaryRangeUpper,
        'description': description,
        'applications': JsonConverters.toJson(applications,'List<JobApplication>',context!),
        'closing': JsonConverters.toJson(closing,'DateTime',context!)
    });

    getTypeName() => "Job";
    TypeContext? context = _ctx;
}

class Contact implements IConvertible
{
    int id = 0;
    // @computed()
    String displayName = "";

    String profileUrl = "";
    String firstName = "";
    String lastName = "";
    int? salaryExpectation;
    String jobType = "";
    int availabilityWeeks = 0;
    EmploymentType? preferredWorkType;
    String preferredLocation = "";
    String email = "";
    String phone = "";
    List<String>? skills;
    String about = "";
    List<JobApplication> applications = [];

    Contact({this.id=0,this.displayName="",this.profileUrl="",this.firstName="",this.lastName="",this.salaryExpectation,this.jobType="",this.availabilityWeeks=0,this.preferredWorkType,this.preferredLocation="",this.email="",this.phone="",this.skills,this.about="",this.applications=const []});
    Contact.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'] ?? 0;
        displayName = json['displayName'] ?? "";
        profileUrl = json['profileUrl'] ?? "";
        firstName = json['firstName'] ?? "";
        lastName = json['lastName'] ?? "";
        salaryExpectation = json['salaryExpectation'];
        jobType = json['jobType'] ?? "";
        availabilityWeeks = json['availabilityWeeks'] ?? 0;
        preferredWorkType = JsonConverters.fromJson(json['preferredWorkType'],'EmploymentType',context!);
        preferredLocation = json['preferredLocation'] ?? "";
        email = json['email'] ?? "";
        phone = json['phone'] ?? "";
        skills = JsonConverters.fromJson(json['skills'],'List<String>',context!);
        about = json['about'] ?? "";
        applications = JsonConverters.fromJson(json['applications'],'List<JobApplication>',context!) ?? [];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'displayName': displayName,
        'profileUrl': profileUrl,
        'firstName': firstName,
        'lastName': lastName,
        'salaryExpectation': salaryExpectation,
        'jobType': jobType,
        'availabilityWeeks': availabilityWeeks,
        'preferredWorkType': JsonConverters.toJson(preferredWorkType,'EmploymentType',context!),
        'preferredLocation': preferredLocation,
        'email': email,
        'phone': phone,
        'skills': JsonConverters.toJson(skills,'List<String>',context!),
        'about': about,
        'applications': JsonConverters.toJson(applications,'List<JobApplication>',context!)
    };

    getTypeName() => "Contact";
    TypeContext? context = _ctx;
}

class AppUser implements IConvertible
{
    String id = "";
    String? firstName;
    String? lastName;
    String? displayName;
    String? profileUrl;

    AppUser({this.id="",this.firstName,this.lastName,this.displayName,this.profileUrl});
    AppUser.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'] ?? "";
        firstName = json['firstName'];
        lastName = json['lastName'];
        displayName = json['displayName'];
        profileUrl = json['profileUrl'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'firstName': firstName,
        'lastName': lastName,
        'displayName': displayName,
        'profileUrl': profileUrl
    };

    getTypeName() => "AppUser";
    TypeContext? context = _ctx;
}

class JobApplicationComment extends AuditBase implements IConvertible
{
    int id = 0;
    // @References(typeof(AppUser))
    String appUserId = "";

    AppUser? appUser;
    // @References(typeof(JobApplication))
    int jobApplicationId = 0;

    String comment = "";

    JobApplicationComment({this.id=0,this.appUserId="",this.appUser,this.jobApplicationId=0,this.comment=""});
    JobApplicationComment.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'] ?? 0;
        appUserId = json['appUserId'] ?? "";
        appUser = JsonConverters.fromJson(json['appUser'],'AppUser',context!);
        jobApplicationId = json['jobApplicationId'] ?? 0;
        comment = json['comment'] ?? "";
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'appUserId': appUserId,
        'appUser': JsonConverters.toJson(appUser,'AppUser',context!),
        'jobApplicationId': jobApplicationId,
        'comment': comment
    });

    getTypeName() => "JobApplicationComment";
    TypeContext? context = _ctx;
}

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

class JobApplicationAttachment implements IConvertible
{
    int id = 0;
    // @References(typeof(JobApplication))
    int jobApplicationId = 0;

    String fileName = "";
    String filePath = "";
    String contentType = "";
    int contentLength = 0;

    JobApplicationAttachment({this.id=0,this.jobApplicationId=0,this.fileName="",this.filePath="",this.contentType="",this.contentLength=0});
    JobApplicationAttachment.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'] ?? 0;
        jobApplicationId = json['jobApplicationId'] ?? 0;
        fileName = json['fileName'] ?? "";
        filePath = json['filePath'] ?? "";
        contentType = json['contentType'] ?? "";
        contentLength = json['contentLength'] ?? 0;
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'jobApplicationId': jobApplicationId,
        'fileName': fileName,
        'filePath': filePath,
        'contentType': contentType,
        'contentLength': contentLength
    };

    getTypeName() => "JobApplicationAttachment";
    TypeContext? context = _ctx;
}

class JobApplicationEvent extends AuditBase implements IConvertible
{
    int id = 0;
    // @References(typeof(JobApplication))
    int jobApplicationId = 0;

    // @References(typeof(AppUser))
    String appUserId = "";

    AppUser? appUser;
    String description = "";
    JobApplicationStatus? status;
    DateTime? eventDate;

    JobApplicationEvent({this.id=0,this.jobApplicationId=0,this.appUserId="",this.appUser,this.description="",this.status,this.eventDate});
    JobApplicationEvent.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'] ?? 0;
        jobApplicationId = json['jobApplicationId'] ?? 0;
        appUserId = json['appUserId'] ?? "";
        appUser = JsonConverters.fromJson(json['appUser'],'AppUser',context!);
        description = json['description'] ?? "";
        status = JsonConverters.fromJson(json['status'],'JobApplicationStatus',context!);
        eventDate = JsonConverters.fromJson(json['eventDate'],'DateTime',context!) ?? DateTime(0);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'jobApplicationId': jobApplicationId,
        'appUserId': appUserId,
        'appUser': JsonConverters.toJson(appUser,'AppUser',context!),
        'description': description,
        'status': JsonConverters.toJson(status,'JobApplicationStatus',context!),
        'eventDate': JsonConverters.toJson(eventDate,'DateTime',context!)
    });

    getTypeName() => "JobApplicationEvent";
    TypeContext? context = _ctx;
}

class PhoneScreen extends AuditBase implements IConvertible
{
    int id = 0;
    // @References(typeof(AppUser))
    String appUserId = "";

    AppUser? appUser;
    // @References(typeof(JobApplication))
    int jobApplicationId = 0;

    JobApplicationStatus? applicationStatus;
    String notes = "";

    PhoneScreen({this.id=0,this.appUserId="",this.appUser,this.jobApplicationId=0,this.applicationStatus,this.notes=""});
    PhoneScreen.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'] ?? 0;
        appUserId = json['appUserId'] ?? "";
        appUser = JsonConverters.fromJson(json['appUser'],'AppUser',context!);
        jobApplicationId = json['jobApplicationId'] ?? 0;
        applicationStatus = JsonConverters.fromJson(json['applicationStatus'],'JobApplicationStatus',context!);
        notes = json['notes'] ?? "";
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'appUserId': appUserId,
        'appUser': JsonConverters.toJson(appUser,'AppUser',context!),
        'jobApplicationId': jobApplicationId,
        'applicationStatus': JsonConverters.toJson(applicationStatus,'JobApplicationStatus',context!),
        'notes': notes
    });

    getTypeName() => "PhoneScreen";
    TypeContext? context = _ctx;
}

class Interview extends AuditBase implements IConvertible
{
    int id = 0;
    DateTime? bookingTime;
    // @References(typeof(JobApplication))
    int jobApplicationId = 0;

    // @References(typeof(AppUser))
    String appUserId = "";

    AppUser? appUser;
    JobApplicationStatus? applicationStatus;
    String notes = "";

    Interview({this.id=0,this.bookingTime,this.jobApplicationId=0,this.appUserId="",this.appUser,this.applicationStatus,this.notes=""});
    Interview.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'] ?? 0;
        bookingTime = JsonConverters.fromJson(json['bookingTime'],'DateTime',context!) ?? DateTime(0);
        jobApplicationId = json['jobApplicationId'] ?? 0;
        appUserId = json['appUserId'] ?? "";
        appUser = JsonConverters.fromJson(json['appUser'],'AppUser',context!);
        applicationStatus = JsonConverters.fromJson(json['applicationStatus'],'JobApplicationStatus',context!);
        notes = json['notes'] ?? "";
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'bookingTime': JsonConverters.toJson(bookingTime,'DateTime',context!),
        'jobApplicationId': jobApplicationId,
        'appUserId': appUserId,
        'appUser': JsonConverters.toJson(appUser,'AppUser',context!),
        'applicationStatus': JsonConverters.toJson(applicationStatus,'JobApplicationStatus',context!),
        'notes': notes
    });

    getTypeName() => "Interview";
    TypeContext? context = _ctx;
}

class JobOffer extends AuditBase implements IConvertible
{
    int id = 0;
    int salaryOffer = 0;
    String currency = "";
    // @References(typeof(JobApplication))
    int jobApplicationId = 0;

    // @References(typeof(AppUser))
    String appUserId = "";

    AppUser? appUser;
    String notes = "";

    JobOffer({this.id=0,this.salaryOffer=0,this.currency="",this.jobApplicationId=0,this.appUserId="",this.appUser,this.notes=""});
    JobOffer.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        id = json['id'] ?? 0;
        salaryOffer = json['salaryOffer'] ?? 0;
        currency = json['currency'] ?? "";
        jobApplicationId = json['jobApplicationId'] ?? 0;
        appUserId = json['appUserId'] ?? "";
        appUser = JsonConverters.fromJson(json['appUser'],'AppUser',context!);
        notes = json['notes'] ?? "";
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'id': id,
        'salaryOffer': salaryOffer,
        'currency': currency,
        'jobApplicationId': jobApplicationId,
        'appUserId': appUserId,
        'appUser': JsonConverters.toJson(appUser,'AppUser',context!),
        'notes': notes
    });

    getTypeName() => "JobOffer";
    TypeContext? context = _ctx;
}

class JobApplication implements IConvertible
{
    int id = 0;
    // @References(typeof(Job))
    int jobId = 0;

    // @References(typeof(Contact))
    int contactId = 0;

    Job? position;
    Contact? applicant;
    List<JobApplicationComment> comments = [];
    DateTime? appliedDate;
    JobApplicationStatus? applicationStatus;
    List<JobApplicationAttachment> attachments = [];
    List<JobApplicationEvent> events = [];
    PhoneScreen? phoneScreen;
    Interview? interview;
    JobOffer? jobOffer;

    JobApplication({this.id=0,this.jobId=0,this.contactId=0,this.position,this.applicant,this.comments=const [],this.appliedDate,this.applicationStatus,this.attachments=const [],this.events=const [],this.phoneScreen,this.interview,this.jobOffer});
    JobApplication.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'] ?? 0;
        jobId = json['jobId'] ?? 0;
        contactId = json['contactId'] ?? 0;
        position = JsonConverters.fromJson(json['position'],'Job',context!);
        applicant = JsonConverters.fromJson(json['applicant'],'Contact',context!);
        comments = JsonConverters.fromJson(json['comments'],'List<JobApplicationComment>',context!) ?? [];
        appliedDate = JsonConverters.fromJson(json['appliedDate'],'DateTime',context!) ?? DateTime(0);
        applicationStatus = JsonConverters.fromJson(json['applicationStatus'],'JobApplicationStatus',context!);
        attachments = JsonConverters.fromJson(json['attachments'],'List<JobApplicationAttachment>',context!) ?? [];
        events = JsonConverters.fromJson(json['events'],'List<JobApplicationEvent>',context!) ?? [];
        phoneScreen = JsonConverters.fromJson(json['phoneScreen'],'PhoneScreen',context!);
        interview = JsonConverters.fromJson(json['interview'],'Interview',context!);
        jobOffer = JsonConverters.fromJson(json['jobOffer'],'JobOffer',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'jobId': jobId,
        'contactId': contactId,
        'position': JsonConverters.toJson(position,'Job',context!),
        'applicant': JsonConverters.toJson(applicant,'Contact',context!),
        'comments': JsonConverters.toJson(comments,'List<JobApplicationComment>',context!),
        'appliedDate': JsonConverters.toJson(appliedDate,'DateTime',context!),
        'applicationStatus': JsonConverters.toJson(applicationStatus,'JobApplicationStatus',context!),
        'attachments': JsonConverters.toJson(attachments,'List<JobApplicationAttachment>',context!),
        'events': JsonConverters.toJson(events,'List<JobApplicationEvent>',context!),
        'phoneScreen': JsonConverters.toJson(phoneScreen,'PhoneScreen',context!),
        'interview': JsonConverters.toJson(interview,'Interview',context!),
        'jobOffer': JsonConverters.toJson(jobOffer,'JobOffer',context!)
    };

    getTypeName() => "JobApplication";
    TypeContext? context = _ctx;
}

class CreateJobApplication implements ICreateDb<JobApplication>, IConvertible
{
    // @Validate(Validator="GreaterThan(0)")
    int jobId = 0;

    // @Validate(Validator="GreaterThan(0)")
    int contactId = 0;

    DateTime? appliedDate;
    JobApplicationStatus? applicationStatus;
    List<JobApplicationAttachment>? attachments;

    CreateJobApplication({this.jobId=0,this.contactId=0,this.appliedDate,this.applicationStatus,this.attachments});
    CreateJobApplication.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        jobId = json['jobId'] ?? 0;
        contactId = json['contactId'] ?? 0;
        appliedDate = JsonConverters.fromJson(json['appliedDate'],'DateTime',context!) ?? DateTime(0);
        applicationStatus = JsonConverters.fromJson(json['applicationStatus'],'JobApplicationStatus',context!);
        attachments = JsonConverters.fromJson(json['attachments'],'List<JobApplicationAttachment>',context!) ?? [];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'jobId': jobId,
        'contactId': contactId,
        'appliedDate': JsonConverters.toJson(appliedDate,'DateTime',context!),
        'applicationStatus': JsonConverters.toJson(applicationStatus,'JobApplicationStatus',context!),
        'attachments': JsonConverters.toJson(attachments,'List<JobApplicationAttachment>',context!)
    };

    getTypeName() => "CreateJobApplication";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'blazor_gallery.servicestack.net', types: <String, TypeInfo> {
    'EmploymentType': TypeInfo(TypeOf.Enum, enumValues:EmploymentType.values),
    'Job': TypeInfo(TypeOf.Class, create:() => Job()),
    'List<JobApplication>': TypeInfo(TypeOf.Class, create:() => <JobApplication>[]),
    'JobApplication': TypeInfo(TypeOf.Class, create:() => JobApplication()),
    'Contact': TypeInfo(TypeOf.Class, create:() => Contact()),
    'AppUser': TypeInfo(TypeOf.Class, create:() => AppUser()),
    'JobApplicationComment': TypeInfo(TypeOf.Class, create:() => JobApplicationComment()),
    'JobApplicationStatus': TypeInfo(TypeOf.Enum, enumValues:JobApplicationStatus.values),
    'JobApplicationAttachment': TypeInfo(TypeOf.Class, create:() => JobApplicationAttachment()),
    'JobApplicationEvent': TypeInfo(TypeOf.Class, create:() => JobApplicationEvent()),
    'PhoneScreen': TypeInfo(TypeOf.Class, create:() => PhoneScreen()),
    'Interview': TypeInfo(TypeOf.Class, create:() => Interview()),
    'JobOffer': TypeInfo(TypeOf.Class, create:() => JobOffer()),
    'List<JobApplicationComment>': TypeInfo(TypeOf.Class, create:() => <JobApplicationComment>[]),
    'List<JobApplicationAttachment>': TypeInfo(TypeOf.Class, create:() => <JobApplicationAttachment>[]),
    'List<JobApplicationEvent>': TypeInfo(TypeOf.Class, create:() => <JobApplicationEvent>[]),
    'CreateJobApplication': TypeInfo(TypeOf.Class, create:() => CreateJobApplication()),
});

Dart CreateJobApplication 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/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>