<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
<edmx:DataServices>
<Schema Namespace="Cmc.Nexus.Models.Academics"
xmlns:cmcedm="http://www.campusmanagement.com/odata/ns/edm"
xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EntityType Name="..." cmcedm:DisplayName="..." cmcedm:PluralDisplayName="..." cmcedm:Description="...">
<Key>
<PropertyRef Name="(FieldName)" />
</Key>
<Property Name="(FieldName)" Type="Edm.(Type)"
Nullable="(bool)" cmcedm:Browsable="(bool)" ... cmcedm:DisplayName="Id" />
<NavigationProperty Name="(FieldName)" Type="Cmc.Nexus.Models ..."
cmcedm:Browsable="true" cmcedm:DisplayName="..." />
</EntityType>
</Schema>
<Schema Namespace="CampusNexus"
xmlns:cmcedm="http://www.campusmanagement.com/odata/ns/edm"
xmlns="http://docs.oasis-open.org/odata/ns/edm">
<Function Name="GetTaskTemplatesForUser" IsBound="true">
<Parameter Name="bindingParameter" Type="Collection(Cmc.Nexus.Models ...)" />
<Parameter Name="(Fieldname)" Type="Edm.Int32" Nullable="false" />
<ReturnType Type="Collection(Cmc.Nexus.Models....)" />
</Function>
<EntityContainer Name="Container">
<EntitySet Name="..." EntityType="Cmc.Nexus.Models ...">
<NavigationPropertyBinding Path="..." Target="..." />
</EntitySet>
<EntitySet Name="..." EntityType="..." />
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>