﻿<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
  <!-- EF Runtime content -->
  <edmx:Runtime>
    <!-- SSDL content -->
    <edmx:StorageModels>
    <Schema Namespace="LegitimateAffectedApplicationsModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
        <EntityType Name="AffectedApplications">
          <Key>
            <PropertyRef Name="AffectedApplicationID" />
          </Key>
          <Property Name="AffectedApplicationID" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
          <Property Name="LGOperatingLicenceNumber" Type="varchar" MaxLength="20" />
          <Property Name="IssueNumber" Type="smallint" />
          <Property Name="IssueDate" Type="datetime" />
          <Property Name="ExpiryDate" Type="datetime" />
          <Property Name="CertificateNumber" Type="varchar" MaxLength="25" />
          <Property Name="LicenceStatus" Type="varchar" MaxLength="25" />
          <Property Name="LicenceStatusID" Type="smallint" />
          <Property Name="OriginatingLKNNumber" Type="varchar" MaxLength="100" />
          <Property Name="OriginatingPermitNumber" Type="nchar" MaxLength="10" />
          <Property Name="Mode" Type="varchar" MaxLength="100" />
          <Property Name="ModeID" Type="smallint" />
          <Property Name="ApplicationRequestDetailID" Type="bigint" />
          <Property Name="ApplicationNumber" Type="varchar" MaxLength="100" />
          <Property Name="ApplicationType" Type="varchar" MaxLength="100" />
          <Property Name="ApplicationTypeID" Type="smallint" />
          <Property Name="ApplicationCreatedDate" Type="datetime" />
          <Property Name="OriginatingLicenceNumber" Type="varchar" MaxLength="100" />
          <Property Name="MemberFirstname" Type="varchar" MaxLength="100" />
          <Property Name="MemberSurname" Type="varchar" MaxLength="100" />
          <Property Name="MemberFullname" Type="varchar" MaxLength="255" />
          <Property Name="MemberIDNumber" Type="varchar" MaxLength="100" />
          <Property Name="MemberAssociation" Type="varchar" MaxLength="255" />
          <Property Name="MemberAssociationID" Type="smallint" />
          <Property Name="MemberCellNumber" Type="varchar" MaxLength="100" />
          <Property Name="VehicleRegistrationNumber" Type="varchar" MaxLength="100" />
          <Property Name="VehicleVIN" Type="varchar" MaxLength="100" />
          <Property Name="VehicleSeatedCapacity" Type="smallint" />
          <Property Name="VehicleGrossMass" Type="smallint" />
          <Property Name="VehicleMake" Type="varchar" MaxLength="255" />
          <Property Name="VehicleMakeID" Type="smallint" />
          <Property Name="VehicleType" Type="varchar" MaxLength="255" />
          <Property Name="VehicleTypeID" Type="smallint" />
          <Property Name="VehicleCarryingCapacity" Type="varchar" MaxLength="255" />
          <Property Name="VehicleCarryingCapacityID" Type="smallint" />
          <Property Name="VehicleYearOfManufacture" Type="varchar" MaxLength="10" />
          <Property Name="IsAffected" Type="bit" />
          <Property Name="FileFound" Type="bit" />
          <Property Name="FileFoundBy" Type="bigint" />
          <Property Name="FileFoundDate" Type="datetime" />
          <Property Name="ScanningComplete" Type="bit" />
          <Property Name="ScanningCompletedBy" Type="bigint" />
          <Property Name="ScanningCompletedDate" Type="datetime" />
          <Property Name="CapturingComplete" Type="bit" />
          <Property Name="CapturingCompletedBy" Type="bigint" />
          <Property Name="CapturingCompletedDate" Type="datetime" />
          <Property Name="DocumentUploadCompleted" Type="bit" />
          <Property Name="DocumentUploadCompletedBy" Type="bigint" />
          <Property Name="DocumentUploadCompletedDate" Type="datetime" />
          <Property Name="ProcessingFinalised" Type="bit" />
          <Property Name="ProcessingFinalisedBy" Type="bigint" />
          <Property Name="ProcesessingFinalisedDate" Type="datetime" />
          <Property Name="IsException" Type="bit" />
          <Property Name="ExceptionDetails" Type="varchar" MaxLength="2000" />
        </EntityType>
        <EntityType Name="Users">
          <Key>
            <PropertyRef Name="UserID" />
          </Key>
          <Property Name="UserID" Type="bigint" Nullable="false" />
          <Property Name="Name" Type="varchar" MaxLength="100" Nullable="false" />
          <Property Name="PasswordHash" Type="varchar" MaxLength="255" Nullable="false" />
          <Property Name="Email" Type="varchar" MaxLength="100" Nullable="false" />
        </EntityType>
        <Function Name="Pr_ClearException" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
          <Parameter Name="Comments" Type="varchar" Mode="In" />
          <Parameter Name="UserID" Type="bigint" Mode="In" />
        </Function>
        <Function Name="Pr_FlagCapturingComplete" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
          <Parameter Name="UserID" Type="bigint" Mode="In" />
        </Function>
        <Function Name="Pr_FlagDocumentUploadComplete" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
          <Parameter Name="UserID" Type="bigint" Mode="In" />
        </Function>
        <Function Name="Pr_FlagFileAsFound" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
          <Parameter Name="UserID" Type="bigint" Mode="In" />
        </Function>
        <Function Name="Pr_FlagProcessingFinalised" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
          <Parameter Name="UserID" Type="bigint" Mode="In" />
        </Function>
        <Function Name="Pr_FlagScanningComplete" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
          <Parameter Name="UserID" Type="bigint" Mode="In" />
        </Function>
        <Function Name="Pr_GetRequiredDocumentList" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
        </Function>
        <Function Name="Pr_RaiseException" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
          <Parameter Name="ApplicationRequestDetailID" Type="bigint" Mode="In" />
          <Parameter Name="ExceptionDetails" Type="varchar" Mode="In" />
          <Parameter Name="UserID" Type="bigint" Mode="In" />
        </Function>
        <EntityContainer Name="LegitimateAffectedApplicationsModelStoreContainer">
          <EntitySet Name="AffectedApplications" EntityType="Self.AffectedApplications" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="Users" EntityType="Self.Users" Schema="dbo" store:Type="Tables" />
        </EntityContainer>
      </Schema></edmx:StorageModels>
    <!-- CSDL content -->
    <edmx:ConceptualModels>
      <Schema Namespace="LegitimateAffectedApplicationsModel" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
        <EntityContainer Name="AffectedApplicationsEntities" annotation:LazyLoadingEnabled="true">
          <EntitySet Name="AffectedApplications" EntityType="LegitimateAffectedApplicationsModel.AffectedApplication" />
          <FunctionImport Name="Pr_GetRequiredDocumentList" ReturnType="Collection(String)">
          <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
          </FunctionImport>
          <FunctionImport Name="Pr_FlagCapturingComplete">
            <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
            <Parameter Name="UserID" Mode="In" Type="Int64" />
          </FunctionImport>
          <FunctionImport Name="Pr_FlagDocumentUploadComplete">
            <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
            <Parameter Name="UserID" Mode="In" Type="Int64" />
          </FunctionImport>
          <FunctionImport Name="Pr_FlagFileAsFound">
            <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
            <Parameter Name="UserID" Mode="In" Type="Int64" />
          </FunctionImport>
          <FunctionImport Name="Pr_FlagProcessingFinalised">
            <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
            <Parameter Name="UserID" Mode="In" Type="Int64" />
          </FunctionImport>
          <FunctionImport Name="Pr_FlagScanningComplete">
            <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
            <Parameter Name="UserID" Mode="In" Type="Int64" />
          </FunctionImport>
          <FunctionImport Name="Pr_ClearException">
            <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
            <Parameter Name="Comments" Mode="In" Type="String" />
            <Parameter Name="UserID" Mode="In" Type="Int64" />
          </FunctionImport>
          <FunctionImport Name="Pr_RaiseException">
            <Parameter Name="ApplicationRequestDetailID" Mode="In" Type="Int64" />
            <Parameter Name="ExceptionDetails" Mode="In" Type="String" />
            <Parameter Name="UserID" Mode="In" Type="Int64" />
          </FunctionImport>
          <EntitySet Name="Users" EntityType="LegitimateAffectedApplicationsModel.User" />
        </EntityContainer>
        <EntityType Name="AffectedApplication">
          <Key>
            <PropertyRef Name="AffectedApplicationID" />
          </Key>
          <Property Name="LGOperatingLicenceNumber" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
          <Property Name="IssueNumber" Type="Int16" />
          <Property Name="IssueDate" Type="DateTime" Precision="3" />
          <Property Name="ExpiryDate" Type="DateTime" Precision="3" />
          <Property Name="CertificateNumber" Type="String" MaxLength="25" FixedLength="false" Unicode="false" />
          <Property Name="LicenceStatus" Type="String" MaxLength="25" FixedLength="false" Unicode="false" />
          <Property Name="LicenceStatusID" Type="Int16" />
          <Property Name="OriginatingLKNNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="OriginatingPermitNumber" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
          <Property Name="Mode" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="ModeID" Type="Int16" />
          <Property Name="ApplicationNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="ApplicationType" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="ApplicationTypeID" Type="Int16" />
          <Property Name="ApplicationCreatedDate" Type="DateTime" Precision="3" />
          <Property Name="OriginatingLicenceNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="MemberFirstname" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="MemberSurname" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="MemberFullname" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
          <Property Name="MemberIDNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="MemberAssociation" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
          <Property Name="MemberAssociationID" Type="Int16" />
          <Property Name="MemberCellNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="VehicleRegistrationNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="VehicleVIN" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="VehicleSeatedCapacity" Type="Int16" />
          <Property Name="VehicleGrossMass" Type="Int16" />
          <Property Name="VehicleMake" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
          <Property Name="VehicleMakeID" Type="Int16" />
          <Property Name="VehicleType" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
          <Property Name="VehicleTypeID" Type="Int16" />
          <Property Name="VehicleCarryingCapacity" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
          <Property Name="VehicleCarryingCapacityID" Type="Int16" />
          <Property Name="VehicleYearOfManufacture" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
          <Property Name="IsAffected" Type="Boolean" />
          <Property Name="ApplicationRequestDetailID" Type="Int64" />
          <Property Name="AffectedApplicationID" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="FileFound" Type="Boolean" />
          <Property Name="FileFoundBy" Type="Int64" />
          <Property Name="FileFoundDate" Type="DateTime" Precision="3" />
          <Property Name="ScanningComplete" Type="Boolean" />
          <Property Name="ScanningCompletedBy" Type="Int64" />
          <Property Name="ScanningCompletedDate" Type="DateTime" Precision="3" />
          <Property Name="CapturingComplete" Type="Boolean" />
          <Property Name="CapturingCompletedBy" Type="Int64" />
          <Property Name="CapturingCompletedDate" Type="DateTime" Precision="3" />
          <Property Name="DocumentUploadCompleted" Type="Boolean" />
          <Property Name="DocumentUploadCompletedBy" Type="Int64" />
          <Property Name="DocumentUploadCompletedDate" Type="DateTime" Precision="3" />
          <Property Name="ProcessingFinalised" Type="Boolean" />
          <Property Name="ProcessingFinalisedBy" Type="Int64" />
          <Property Name="ProcesessingFinalisedDate" Type="DateTime" Precision="3" />
          <Property Name="IsException" Type="Boolean" />
          <Property Name="ExceptionDetails" Type="String" MaxLength="2000" FixedLength="false" Unicode="false" />
        </EntityType>
        <EntityType Name="User">
          <Key>
            <PropertyRef Name="UserID" />
          </Key>
          <Property Name="UserID" Type="Int64" Nullable="false" />
          <Property Name="Name" Type="String" Nullable="false" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="PasswordHash" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="false" />
          <Property Name="Email" Type="String" Nullable="false" MaxLength="100" FixedLength="false" Unicode="false" />
        </EntityType>
      </Schema>
    </edmx:ConceptualModels>
    <!-- C-S mapping content -->
    <edmx:Mappings>
      <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
        <EntityContainerMapping StorageEntityContainer="LegitimateAffectedApplicationsModelStoreContainer" CdmEntityContainer="AffectedApplicationsEntities">
          <EntitySetMapping Name="AffectedApplications">
            <EntityTypeMapping TypeName="LegitimateAffectedApplicationsModel.AffectedApplication">
              <MappingFragment StoreEntitySet="AffectedApplications">
                <ScalarProperty Name="ExceptionDetails" ColumnName="ExceptionDetails" />
                <ScalarProperty Name="IsException" ColumnName="IsException" />
                <ScalarProperty Name="ProcesessingFinalisedDate" ColumnName="ProcesessingFinalisedDate" />
                <ScalarProperty Name="ProcessingFinalisedBy" ColumnName="ProcessingFinalisedBy" />
                <ScalarProperty Name="ProcessingFinalised" ColumnName="ProcessingFinalised" />
                <ScalarProperty Name="DocumentUploadCompletedDate" ColumnName="DocumentUploadCompletedDate" />
                <ScalarProperty Name="DocumentUploadCompletedBy" ColumnName="DocumentUploadCompletedBy" />
                <ScalarProperty Name="DocumentUploadCompleted" ColumnName="DocumentUploadCompleted" />
                <ScalarProperty Name="CapturingCompletedDate" ColumnName="CapturingCompletedDate" />
                <ScalarProperty Name="CapturingCompletedBy" ColumnName="CapturingCompletedBy" />
                <ScalarProperty Name="CapturingComplete" ColumnName="CapturingComplete" />
                <ScalarProperty Name="ScanningCompletedDate" ColumnName="ScanningCompletedDate" />
                <ScalarProperty Name="ScanningCompletedBy" ColumnName="ScanningCompletedBy" />
                <ScalarProperty Name="ScanningComplete" ColumnName="ScanningComplete" />
                <ScalarProperty Name="FileFoundDate" ColumnName="FileFoundDate" />
                <ScalarProperty Name="FileFoundBy" ColumnName="FileFoundBy" />
                <ScalarProperty Name="FileFound" ColumnName="FileFound" />
                <ScalarProperty Name="AffectedApplicationID" ColumnName="AffectedApplicationID" />
                <ScalarProperty Name="ApplicationRequestDetailID" ColumnName="ApplicationRequestDetailID" />
                <ScalarProperty Name="IsAffected" ColumnName="IsAffected" />
                <ScalarProperty Name="VehicleYearOfManufacture" ColumnName="VehicleYearOfManufacture" />
                <ScalarProperty Name="VehicleCarryingCapacityID" ColumnName="VehicleCarryingCapacityID" />
                <ScalarProperty Name="VehicleCarryingCapacity" ColumnName="VehicleCarryingCapacity" />
                <ScalarProperty Name="VehicleTypeID" ColumnName="VehicleTypeID" />
                <ScalarProperty Name="VehicleType" ColumnName="VehicleType" />
                <ScalarProperty Name="VehicleMakeID" ColumnName="VehicleMakeID" />
                <ScalarProperty Name="VehicleMake" ColumnName="VehicleMake" />
                <ScalarProperty Name="VehicleGrossMass" ColumnName="VehicleGrossMass" />
                <ScalarProperty Name="VehicleSeatedCapacity" ColumnName="VehicleSeatedCapacity" />
                <ScalarProperty Name="VehicleVIN" ColumnName="VehicleVIN" />
                <ScalarProperty Name="VehicleRegistrationNumber" ColumnName="VehicleRegistrationNumber" />
                <ScalarProperty Name="MemberCellNumber" ColumnName="MemberCellNumber" />
                <ScalarProperty Name="MemberAssociationID" ColumnName="MemberAssociationID" />
                <ScalarProperty Name="MemberAssociation" ColumnName="MemberAssociation" />
                <ScalarProperty Name="MemberIDNumber" ColumnName="MemberIDNumber" />
                <ScalarProperty Name="MemberFullname" ColumnName="MemberFullname" />
                <ScalarProperty Name="MemberSurname" ColumnName="MemberSurname" />
                <ScalarProperty Name="MemberFirstname" ColumnName="MemberFirstname" />
                <ScalarProperty Name="OriginatingLicenceNumber" ColumnName="OriginatingLicenceNumber" />
                <ScalarProperty Name="ApplicationCreatedDate" ColumnName="ApplicationCreatedDate" />
                <ScalarProperty Name="ApplicationTypeID" ColumnName="ApplicationTypeID" />
                <ScalarProperty Name="ApplicationType" ColumnName="ApplicationType" />
                <ScalarProperty Name="ApplicationNumber" ColumnName="ApplicationNumber" />
                <ScalarProperty Name="ModeID" ColumnName="ModeID" />
                <ScalarProperty Name="Mode" ColumnName="Mode" />
                <ScalarProperty Name="OriginatingPermitNumber" ColumnName="OriginatingPermitNumber" />
                <ScalarProperty Name="OriginatingLKNNumber" ColumnName="OriginatingLKNNumber" />
                <ScalarProperty Name="LicenceStatusID" ColumnName="LicenceStatusID" />
                <ScalarProperty Name="LicenceStatus" ColumnName="LicenceStatus" />
                <ScalarProperty Name="CertificateNumber" ColumnName="CertificateNumber" />
                <ScalarProperty Name="ExpiryDate" ColumnName="ExpiryDate" />
                <ScalarProperty Name="IssueDate" ColumnName="IssueDate" />
                <ScalarProperty Name="IssueNumber" ColumnName="IssueNumber" />
                <ScalarProperty Name="LGOperatingLicenceNumber" ColumnName="LGOperatingLicenceNumber" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <FunctionImportMapping FunctionImportName="Pr_GetRequiredDocumentList" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_GetRequiredDocumentList" />
          <FunctionImportMapping FunctionImportName="Pr_FlagCapturingComplete" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_FlagCapturingComplete" />
          <FunctionImportMapping FunctionImportName="Pr_FlagDocumentUploadComplete" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_FlagDocumentUploadComplete" />
          <FunctionImportMapping FunctionImportName="Pr_FlagFileAsFound" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_FlagFileAsFound" />
          <FunctionImportMapping FunctionImportName="Pr_FlagProcessingFinalised" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_FlagProcessingFinalised" />
          <FunctionImportMapping FunctionImportName="Pr_FlagScanningComplete" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_FlagScanningComplete" />
          <FunctionImportMapping FunctionImportName="Pr_ClearException" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_ClearException" />
          <FunctionImportMapping FunctionImportName="Pr_RaiseException" FunctionName="LegitimateAffectedApplicationsModel.Store.Pr_RaiseException" />
          <EntitySetMapping Name="Users">
            <EntityTypeMapping TypeName="LegitimateAffectedApplicationsModel.User">
              <MappingFragment StoreEntitySet="Users">
                <ScalarProperty Name="Email" ColumnName="Email" />
                <ScalarProperty Name="PasswordHash" ColumnName="PasswordHash" />
                <ScalarProperty Name="Name" ColumnName="Name" />
                <ScalarProperty Name="UserID" ColumnName="UserID" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
        </EntityContainerMapping>
      </Mapping>
    </edmx:Mappings>
  </edmx:Runtime>
  <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
    <Connection>
      <DesignerInfoPropertySet>
        <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
      </DesignerInfoPropertySet>
    </Connection>
    <Options>
      <DesignerInfoPropertySet>
        <DesignerProperty Name="ValidateOnBuild" Value="true" />
        <DesignerProperty Name="EnablePluralization" Value="true" />
        <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
        <DesignerProperty Name="UseLegacyProvider" Value="false" />
        <DesignerProperty Name="CodeGenerationStrategy" Value="None" />
      </DesignerInfoPropertySet>
    </Options>
    <!-- Diagram content (shape and connector positions) -->
    <Diagrams></Diagrams>
  </Designer>
</edmx:Edmx>