EntityModel.edmx 88 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
  3. <!-- EF Runtime content -->
  4. <edmx:Runtime>
  5. <!-- SSDL content -->
  6. <edmx:StorageModels>
  7. <Schema Namespace="CD67.FicheCollege.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">
  8. <EntityType Name="ActionEduActeurRoles">
  9. <Key>
  10. <PropertyRef Name="Id" />
  11. </Key>
  12. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  13. <Property Name="Libelle" Type="varchar" MaxLength="50" Nullable="false" />
  14. <Property Name="Ordre" Type="int" Nullable="false" />
  15. </EntityType>
  16. <EntityType Name="ActionEduActeurs">
  17. <Key>
  18. <PropertyRef Name="Id" />
  19. </Key>
  20. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  21. <Property Name="Nom" Type="varchar(max)" Nullable="false" />
  22. <Property Name="Sid" Type="nvarchar" MaxLength="7" />
  23. <Property Name="RoleId" Type="int" Nullable="false" />
  24. <Property Name="Commentaire" Type="varchar(max)" />
  25. <Property Name="ActionEduId" Type="int" Nullable="false" />
  26. </EntityType>
  27. <EntityType Name="ActionEduAxes">
  28. <Key>
  29. <PropertyRef Name="Id" />
  30. </Key>
  31. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  32. <Property Name="Nom" Type="nvarchar(max)" Nullable="false" />
  33. <Property Name="Neutralise" Type="bit" Nullable="false" />
  34. <Property Name="Ordre" Type="int" Nullable="false" />
  35. </EntityType>
  36. <EntityType Name="ActionEduMissions">
  37. <Key>
  38. <PropertyRef Name="Id" />
  39. </Key>
  40. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  41. <Property Name="Code" Type="nvarchar(max)" Nullable="false" />
  42. <Property Name="Nom" Type="nvarchar(max)" Nullable="false" />
  43. <Property Name="Description" Type="nvarchar(max)" />
  44. <Property Name="ActionEduCollegeId" Type="int" Nullable="false" />
  45. </EntityType>
  46. <EntityType Name="ActionEduStatuts">
  47. <Key>
  48. <PropertyRef Name="Id" />
  49. </Key>
  50. <Property Name="Id" Type="int" Nullable="false" />
  51. <Property Name="Nom" Type="varchar" MaxLength="50" Nullable="false" />
  52. </EntityType>
  53. <EntityType Name="ActionEduThematiques">
  54. <Key>
  55. <PropertyRef Name="Id" />
  56. </Key>
  57. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  58. <Property Name="Nom" Type="nvarchar(max)" Nullable="false" />
  59. <Property Name="Neutralise" Type="bit" Nullable="false" />
  60. <Property Name="Ordre" Type="int" Nullable="false" />
  61. <Property Name="ActionEduAxeId" Type="int" Nullable="false" />
  62. </EntityType>
  63. <EntityType Name="ActionsEdu">
  64. <Key>
  65. <PropertyRef Name="Id" />
  66. </Key>
  67. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  68. <Property Name="Numero" Type="nvarchar(max)" Nullable="false" />
  69. <Property Name="Nom" Type="nvarchar(max)" Nullable="false" />
  70. <Property Name="Montant" Type="decimal" Precision="18" Scale="0" />
  71. <Property Name="Description" Type="nvarchar(max)" />
  72. <Property Name="CommentaireInterne" Type="nvarchar(max)" />
  73. <Property Name="CommentairePublic" Type="nvarchar(max)" />
  74. <Property Name="Neutralise" Type="bit" Nullable="false" />
  75. <Property Name="Ordre" Type="int" Nullable="false" />
  76. <Property Name="ActionEduThematiqueId" Type="int" Nullable="false" />
  77. <Property Name="StatutId" Type="int" Nullable="false" />
  78. <Property Name="AnneeId" Type="int" Nullable="false" />
  79. <Property Name="TokenId" Type="uniqueidentifier" Nullable="false" />
  80. </EntityType>
  81. <EntityType Name="ActionsEduColleges">
  82. <Key>
  83. <PropertyRef Name="Id" />
  84. </Key>
  85. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  86. <Property Name="Commentaire" Type="nvarchar(max)" />
  87. <Property Name="NbEleves" Type="bigint" />
  88. <Property Name="CollegeId" Type="int" Nullable="false" />
  89. <Property Name="ActionEduId" Type="int" Nullable="false" />
  90. </EntityType>
  91. <EntityType Name="Annees">
  92. <Key>
  93. <PropertyRef Name="Id" />
  94. </Key>
  95. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  96. <Property Name="Libelle" Type="nvarchar" MaxLength="12" Nullable="false" />
  97. <Property Name="AnneeRentree" Type="int" Nullable="false" />
  98. </EntityType>
  99. <EntityType Name="Colleges">
  100. <Key>
  101. <PropertyRef Name="Id" />
  102. </Key>
  103. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  104. <Property Name="Annee_Id" Type="int" Nullable="false" />
  105. <Property Name="CodeRne" Type="nvarchar" MaxLength="10" Nullable="false" />
  106. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  107. <Property Name="Adresse" Type="nvarchar" MaxLength="255" />
  108. <Property Name="Code_Postal" Type="nvarchar" MaxLength="5" />
  109. <Property Name="TypeCollege_Id" Type="int" Nullable="false" />
  110. <Property Name="Commune_Insee" Type="nvarchar" MaxLength="5" />
  111. <Property Name="Commune" Type="nvarchar" MaxLength="255" Nullable="false" />
  112. <Property Name="Canton" Type="nvarchar" MaxLength="255" />
  113. <Property Name="Territoire_Id" Type="nvarchar" MaxLength="10" />
  114. <Property Name="TAD" Type="nvarchar" MaxLength="255" />
  115. <Property Name="CDC" Type="nvarchar" MaxLength="255" />
  116. <Property Name="Tel" Type="nvarchar" MaxLength="255" />
  117. <Property Name="Fax" Type="nvarchar" MaxLength="255" />
  118. <Property Name="Email" Type="nvarchar" MaxLength="255" />
  119. <Property Name="PrincipalSid" Type="nvarchar" MaxLength="64" />
  120. <Property Name="AdjointSid" Type="nvarchar" MaxLength="64" />
  121. <Property Name="Gestionnaire1Sid" Type="nvarchar" MaxLength="64" />
  122. <Property Name="Gestionnaire2Sid" Type="nvarchar" MaxLength="64" />
  123. <Property Name="TokenId" Type="uniqueidentifier" Nullable="false" />
  124. <Property Name="RestaurationType_Id" Type="int" />
  125. </EntityType>
  126. <EntityType Name="Groupes">
  127. <Key>
  128. <PropertyRef Name="Id" />
  129. </Key>
  130. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  131. <Property Name="Nom" Type="nvarchar" MaxLength="50" Nullable="false" />
  132. <Property Name="Description" Type="nvarchar(max)" />
  133. </EntityType>
  134. <EntityType Name="RestaurationFormulaires">
  135. <Key>
  136. <PropertyRef Name="Id" />
  137. </Key>
  138. <Property Name="Id" Type="uniqueidentifier" Nullable="false" />
  139. <Property Name="College_Id" Type="int" Nullable="false" />
  140. <Property Name="Statut" Type="nvarchar" MaxLength="50" Nullable="false" />
  141. <Property Name="NbDP_College" Type="int" Nullable="false" />
  142. <Property Name="NbDP_Lycee" Type="int" />
  143. <Property Name="NbDP_MatPrimPeri" Type="int" />
  144. <Property Name="NbDP_Commensaux" Type="int" />
  145. <Property Name="NbDP_ATC" Type="int" />
  146. <Property Name="NbDP_AgentC" Type="int" />
  147. <Property Name="Prix_Forfait5j" Type="decimal" Precision="18" Scale="2" />
  148. <Property Name="NbJours_Forfait5j" Type="int" />
  149. <Property Name="Prix_Forfait4j" Type="decimal" Precision="18" Scale="2" />
  150. <Property Name="NbJours_Forfait4j" Type="int" />
  151. <Property Name="Prix_Forfait3j" Type="decimal" Precision="18" Scale="2" />
  152. <Property Name="NbJours_Forfait3j" Type="int" />
  153. <Property Name="Prix_Forfait2j" Type="decimal" Precision="18" Scale="2" />
  154. <Property Name="NbJours_Forfait2j" Type="int" />
  155. <Property Name="Prix_Forfait1j" Type="decimal" Precision="18" Scale="2" />
  156. <Property Name="NbJours_Forfait1j" Type="int" />
  157. <Property Name="Prix_Ticket" Type="decimal" Precision="18" Scale="2" Nullable="false" />
  158. <Property Name="Tarif_Pension" Type="decimal" Precision="18" Scale="2" />
  159. <Property Name="Prix_ATC" Type="decimal" Precision="18" Scale="2" Nullable="false" />
  160. <Property Name="Prix_AgentC" Type="decimal" Precision="18" Scale="2" Nullable="false" />
  161. <Property Name="Prix_Commensaux" Type="decimal" Precision="18" Scale="2" />
  162. <Property Name="Prix_EcolePeri" Type="decimal" Precision="18" Scale="2" />
  163. <Property Name="NbEleves_FondSocial" Type="int" />
  164. <Property Name="Montant_FondSocial" Type="decimal" Precision="18" Scale="2" />
  165. <Property Name="NbEleves_Impayes" Type="int" />
  166. <Property Name="Montant_Impayes" Type="decimal" Precision="18" Scale="2" />
  167. <Property Name="Date_AvisCA" Type="datetime2" Precision="7" />
  168. <Property Name="Ind_Signature" Type="bit" Nullable="false" />
  169. </EntityType>
  170. <EntityType Name="RestaurationFormulairesRepas">
  171. <Key>
  172. <PropertyRef Name="Id" />
  173. </Key>
  174. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  175. <Property Name="RestaurationFormulaires_Id" Type="uniqueidentifier" Nullable="false" />
  176. <Property Name="RestaurationTypesRepas_Id" Type="int" Nullable="false" />
  177. <Property Name="NbRepas" Type="int" />
  178. <Property Name="NbJours" Type="int" />
  179. <Property Name="NomEtablissement" Type="nvarchar" MaxLength="255" />
  180. </EntityType>
  181. <EntityType Name="RestaurationParametres">
  182. <Key>
  183. <PropertyRef Name="Id" />
  184. </Key>
  185. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  186. <Property Name="Annee_Id" Type="int" Nullable="false" />
  187. <Property Name="Campagne" Type="bit" Nullable="false" />
  188. <Property Name="Prix_Mini" Type="decimal" Precision="18" Scale="2" />
  189. <Property Name="Prix_ATC" Type="decimal" Precision="18" Scale="2" />
  190. <Property Name="Prix_AgentC" Type="decimal" Precision="18" Scale="2" />
  191. <Property Name="Prix_MiniAutres" Type="decimal" Precision="18" Scale="2" />
  192. </EntityType>
  193. <EntityType Name="RestaurationParametresRepas">
  194. <Key>
  195. <PropertyRef Name="RestaurationParametres_Id" />
  196. <PropertyRef Name="RestaurationTypesRepas_Id" />
  197. </Key>
  198. <Property Name="RestaurationParametres_Id" Type="int" Nullable="false" />
  199. <Property Name="RestaurationTypesRepas_Id" Type="int" Nullable="false" />
  200. </EntityType>
  201. <EntityType Name="RestaurationTypes">
  202. <Key>
  203. <PropertyRef Name="Id" />
  204. </Key>
  205. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  206. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  207. <Property Name="Valid" Type="bit" Nullable="false" />
  208. <Property Name="Ordre" Type="int" Nullable="false" />
  209. </EntityType>
  210. <EntityType Name="RestaurationTypesRepas">
  211. <Key>
  212. <PropertyRef Name="Id" />
  213. </Key>
  214. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  215. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  216. <Property Name="Valid" Type="bit" Nullable="false" />
  217. <Property Name="Ordre" Type="int" Nullable="false" />
  218. </EntityType>
  219. <EntityType Name="Territoires">
  220. <Key>
  221. <PropertyRef Name="Id" />
  222. </Key>
  223. <Property Name="Id" Type="nvarchar" MaxLength="10" Nullable="false" />
  224. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  225. <Property Name="Referent_SID" Type="nvarchar" MaxLength="64" />
  226. <Property Name="Referent_Nom" Type="nvarchar" MaxLength="255" />
  227. <Property Name="Referent_Prenom" Type="nvarchar" MaxLength="255" />
  228. <Property Name="Referent_Structure" Type="nvarchar" MaxLength="255" />
  229. <Property Name="Referent_Login" Type="nvarchar" MaxLength="255" />
  230. <Property Name="Referent_Email" Type="nvarchar" MaxLength="255" />
  231. <Property Name="Ordre" Type="int" Nullable="false" />
  232. </EntityType>
  233. <EntityType Name="TypesCollege">
  234. <Key>
  235. <PropertyRef Name="Id" />
  236. </Key>
  237. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  238. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  239. <Property Name="Ordre" Type="int" Nullable="false" />
  240. </EntityType>
  241. <EntityType Name="Utilisateurs">
  242. <Key>
  243. <PropertyRef Name="Id" />
  244. </Key>
  245. <Property Name="Id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  246. <Property Name="Sid" Type="nvarchar" MaxLength="64" Nullable="false" />
  247. <Property Name="GroupeId" Type="int" Nullable="false" />
  248. </EntityType>
  249. <Association Name="FK_ActionEduActeurs_ActionEduActeurRoles">
  250. <End Role="ActionEduActeurRoles" Type="Self.ActionEduActeurRoles" Multiplicity="1" />
  251. <End Role="ActionEduActeurs" Type="Self.ActionEduActeurs" Multiplicity="*" />
  252. <ReferentialConstraint>
  253. <Principal Role="ActionEduActeurRoles">
  254. <PropertyRef Name="Id" />
  255. </Principal>
  256. <Dependent Role="ActionEduActeurs">
  257. <PropertyRef Name="RoleId" />
  258. </Dependent>
  259. </ReferentialConstraint>
  260. </Association>
  261. <Association Name="FK_ActionEduActionEduActeur">
  262. <End Role="ActionsEdu" Type="Self.ActionsEdu" Multiplicity="1" />
  263. <End Role="ActionEduActeurs" Type="Self.ActionEduActeurs" Multiplicity="*" />
  264. <ReferentialConstraint>
  265. <Principal Role="ActionsEdu">
  266. <PropertyRef Name="Id" />
  267. </Principal>
  268. <Dependent Role="ActionEduActeurs">
  269. <PropertyRef Name="ActionEduId" />
  270. </Dependent>
  271. </ReferentialConstraint>
  272. </Association>
  273. <Association Name="FK_ActionEduAnnee">
  274. <End Role="Annees" Type="Self.Annees" Multiplicity="1" />
  275. <End Role="ActionsEdu" Type="Self.ActionsEdu" Multiplicity="*" />
  276. <ReferentialConstraint>
  277. <Principal Role="Annees">
  278. <PropertyRef Name="Id" />
  279. </Principal>
  280. <Dependent Role="ActionsEdu">
  281. <PropertyRef Name="AnneeId" />
  282. </Dependent>
  283. </ReferentialConstraint>
  284. </Association>
  285. <Association Name="FK_ActionEduAxeActionEduThematique">
  286. <End Role="ActionEduAxes" Type="Self.ActionEduAxes" Multiplicity="1" />
  287. <End Role="ActionEduThematiques" Type="Self.ActionEduThematiques" Multiplicity="*" />
  288. <ReferentialConstraint>
  289. <Principal Role="ActionEduAxes">
  290. <PropertyRef Name="Id" />
  291. </Principal>
  292. <Dependent Role="ActionEduThematiques">
  293. <PropertyRef Name="ActionEduAxeId" />
  294. </Dependent>
  295. </ReferentialConstraint>
  296. </Association>
  297. <Association Name="FK_ActionEduCollegeActionEdu">
  298. <End Role="ActionsEdu" Type="Self.ActionsEdu" Multiplicity="1" />
  299. <End Role="ActionsEduColleges" Type="Self.ActionsEduColleges" Multiplicity="*" />
  300. <ReferentialConstraint>
  301. <Principal Role="ActionsEdu">
  302. <PropertyRef Name="Id" />
  303. </Principal>
  304. <Dependent Role="ActionsEduColleges">
  305. <PropertyRef Name="ActionEduId" />
  306. </Dependent>
  307. </ReferentialConstraint>
  308. </Association>
  309. <Association Name="FK_ActionEduCollegeActionEduMission">
  310. <End Role="ActionsEduColleges" Type="Self.ActionsEduColleges" Multiplicity="1" />
  311. <End Role="ActionEduMissions" Type="Self.ActionEduMissions" Multiplicity="*" />
  312. <ReferentialConstraint>
  313. <Principal Role="ActionsEduColleges">
  314. <PropertyRef Name="Id" />
  315. </Principal>
  316. <Dependent Role="ActionEduMissions">
  317. <PropertyRef Name="ActionEduCollegeId" />
  318. </Dependent>
  319. </ReferentialConstraint>
  320. </Association>
  321. <Association Name="FK_ActionEduCollegeCollege">
  322. <End Role="Colleges" Type="Self.Colleges" Multiplicity="1" />
  323. <End Role="ActionsEduColleges" Type="Self.ActionsEduColleges" Multiplicity="*" />
  324. <ReferentialConstraint>
  325. <Principal Role="Colleges">
  326. <PropertyRef Name="Id" />
  327. </Principal>
  328. <Dependent Role="ActionsEduColleges">
  329. <PropertyRef Name="CollegeId" />
  330. </Dependent>
  331. </ReferentialConstraint>
  332. </Association>
  333. <Association Name="FK_ActionEduThematiqueActionEdu">
  334. <End Role="ActionEduThematiques" Type="Self.ActionEduThematiques" Multiplicity="1" />
  335. <End Role="ActionsEdu" Type="Self.ActionsEdu" Multiplicity="*" />
  336. <ReferentialConstraint>
  337. <Principal Role="ActionEduThematiques">
  338. <PropertyRef Name="Id" />
  339. </Principal>
  340. <Dependent Role="ActionsEdu">
  341. <PropertyRef Name="ActionEduThematiqueId" />
  342. </Dependent>
  343. </ReferentialConstraint>
  344. </Association>
  345. <Association Name="FK_ActionsEdu_ActionEduStatuts">
  346. <End Role="ActionEduStatuts" Type="Self.ActionEduStatuts" Multiplicity="1" />
  347. <End Role="ActionsEdu" Type="Self.ActionsEdu" Multiplicity="*" />
  348. <ReferentialConstraint>
  349. <Principal Role="ActionEduStatuts">
  350. <PropertyRef Name="Id" />
  351. </Principal>
  352. <Dependent Role="ActionsEdu">
  353. <PropertyRef Name="StatutId" />
  354. </Dependent>
  355. </ReferentialConstraint>
  356. </Association>
  357. <Association Name="FK_AnneeCollege">
  358. <End Role="Annees" Type="Self.Annees" Multiplicity="1" />
  359. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  360. <ReferentialConstraint>
  361. <Principal Role="Annees">
  362. <PropertyRef Name="Id" />
  363. </Principal>
  364. <Dependent Role="Colleges">
  365. <PropertyRef Name="Annee_Id" />
  366. </Dependent>
  367. </ReferentialConstraint>
  368. </Association>
  369. <Association Name="FK_Colleges_RestaurationTypes">
  370. <End Role="RestaurationTypes" Type="Self.RestaurationTypes" Multiplicity="0..1" />
  371. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  372. <ReferentialConstraint>
  373. <Principal Role="RestaurationTypes">
  374. <PropertyRef Name="Id" />
  375. </Principal>
  376. <Dependent Role="Colleges">
  377. <PropertyRef Name="RestaurationType_Id" />
  378. </Dependent>
  379. </ReferentialConstraint>
  380. </Association>
  381. <Association Name="FK_Colleges_Territoires">
  382. <End Role="Territoires" Type="Self.Territoires" Multiplicity="0..1" />
  383. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  384. <ReferentialConstraint>
  385. <Principal Role="Territoires">
  386. <PropertyRef Name="Id" />
  387. </Principal>
  388. <Dependent Role="Colleges">
  389. <PropertyRef Name="Territoire_Id" />
  390. </Dependent>
  391. </ReferentialConstraint>
  392. </Association>
  393. <Association Name="FK_Colleges_TypesCollege">
  394. <End Role="TypesCollege" Type="Self.TypesCollege" Multiplicity="1" />
  395. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  396. <ReferentialConstraint>
  397. <Principal Role="TypesCollege">
  398. <PropertyRef Name="Id" />
  399. </Principal>
  400. <Dependent Role="Colleges">
  401. <PropertyRef Name="TypeCollege_Id" />
  402. </Dependent>
  403. </ReferentialConstraint>
  404. </Association>
  405. <Association Name="FK_GroupeUtilisateur">
  406. <End Role="Groupes" Type="Self.Groupes" Multiplicity="1" />
  407. <End Role="Utilisateurs" Type="Self.Utilisateurs" Multiplicity="*" />
  408. <ReferentialConstraint>
  409. <Principal Role="Groupes">
  410. <PropertyRef Name="Id" />
  411. </Principal>
  412. <Dependent Role="Utilisateurs">
  413. <PropertyRef Name="GroupeId" />
  414. </Dependent>
  415. </ReferentialConstraint>
  416. </Association>
  417. <Association Name="FK_RestaurationFormulairesColleges">
  418. <End Role="Colleges" Type="Self.Colleges" Multiplicity="1" />
  419. <End Role="RestaurationFormulaires" Type="Self.RestaurationFormulaires" Multiplicity="*" />
  420. <ReferentialConstraint>
  421. <Principal Role="Colleges">
  422. <PropertyRef Name="Id" />
  423. </Principal>
  424. <Dependent Role="RestaurationFormulaires">
  425. <PropertyRef Name="College_Id" />
  426. </Dependent>
  427. </ReferentialConstraint>
  428. </Association>
  429. <Association Name="FK_RestaurationFormulairesRepasForm">
  430. <End Role="RestaurationFormulaires" Type="Self.RestaurationFormulaires" Multiplicity="1" />
  431. <End Role="RestaurationFormulairesRepas" Type="Self.RestaurationFormulairesRepas" Multiplicity="*" />
  432. <ReferentialConstraint>
  433. <Principal Role="RestaurationFormulaires">
  434. <PropertyRef Name="Id" />
  435. </Principal>
  436. <Dependent Role="RestaurationFormulairesRepas">
  437. <PropertyRef Name="RestaurationFormulaires_Id" />
  438. </Dependent>
  439. </ReferentialConstraint>
  440. </Association>
  441. <Association Name="FK_RestaurationFormulairesTypesRepas">
  442. <End Role="RestaurationTypesRepas" Type="Self.RestaurationTypesRepas" Multiplicity="1" />
  443. <End Role="RestaurationFormulairesRepas" Type="Self.RestaurationFormulairesRepas" Multiplicity="*" />
  444. <ReferentialConstraint>
  445. <Principal Role="RestaurationTypesRepas">
  446. <PropertyRef Name="Id" />
  447. </Principal>
  448. <Dependent Role="RestaurationFormulairesRepas">
  449. <PropertyRef Name="RestaurationTypesRepas_Id" />
  450. </Dependent>
  451. </ReferentialConstraint>
  452. </Association>
  453. <Association Name="FK_RestaurationParametresAnnee">
  454. <End Role="Annees" Type="Self.Annees" Multiplicity="1" />
  455. <End Role="RestaurationParametres" Type="Self.RestaurationParametres" Multiplicity="*" />
  456. <ReferentialConstraint>
  457. <Principal Role="Annees">
  458. <PropertyRef Name="Id" />
  459. </Principal>
  460. <Dependent Role="RestaurationParametres">
  461. <PropertyRef Name="Annee_Id" />
  462. </Dependent>
  463. </ReferentialConstraint>
  464. </Association>
  465. <Association Name="FK_RestaurationParametresRepas_Param">
  466. <End Role="RestaurationParametres" Type="Self.RestaurationParametres" Multiplicity="1" />
  467. <End Role="RestaurationParametresRepas" Type="Self.RestaurationParametresRepas" Multiplicity="*" />
  468. <ReferentialConstraint>
  469. <Principal Role="RestaurationParametres">
  470. <PropertyRef Name="Id" />
  471. </Principal>
  472. <Dependent Role="RestaurationParametresRepas">
  473. <PropertyRef Name="RestaurationParametres_Id" />
  474. </Dependent>
  475. </ReferentialConstraint>
  476. </Association>
  477. <Association Name="FK_RestaurationParametresRepas_Repas">
  478. <End Role="RestaurationTypesRepas" Type="Self.RestaurationTypesRepas" Multiplicity="1" />
  479. <End Role="RestaurationParametresRepas" Type="Self.RestaurationParametresRepas" Multiplicity="*" />
  480. <ReferentialConstraint>
  481. <Principal Role="RestaurationTypesRepas">
  482. <PropertyRef Name="Id" />
  483. </Principal>
  484. <Dependent Role="RestaurationParametresRepas">
  485. <PropertyRef Name="RestaurationTypesRepas_Id" />
  486. </Dependent>
  487. </ReferentialConstraint>
  488. </Association>
  489. <EntityContainer Name="CD67FicheCollegeStoreContainer">
  490. <EntitySet Name="ActionEduActeurRoles" EntityType="Self.ActionEduActeurRoles" Schema="dbo" store:Type="Tables" />
  491. <EntitySet Name="ActionEduActeurs" EntityType="Self.ActionEduActeurs" Schema="dbo" store:Type="Tables" />
  492. <EntitySet Name="ActionEduAxes" EntityType="Self.ActionEduAxes" Schema="dbo" store:Type="Tables" />
  493. <EntitySet Name="ActionEduMissions" EntityType="Self.ActionEduMissions" Schema="dbo" store:Type="Tables" />
  494. <EntitySet Name="ActionEduStatuts" EntityType="Self.ActionEduStatuts" Schema="dbo" store:Type="Tables" />
  495. <EntitySet Name="ActionEduThematiques" EntityType="Self.ActionEduThematiques" Schema="dbo" store:Type="Tables" />
  496. <EntitySet Name="ActionsEdu" EntityType="Self.ActionsEdu" Schema="dbo" store:Type="Tables" />
  497. <EntitySet Name="ActionsEduColleges" EntityType="Self.ActionsEduColleges" Schema="dbo" store:Type="Tables" />
  498. <EntitySet Name="Annees" EntityType="Self.Annees" Schema="dbo" store:Type="Tables" />
  499. <EntitySet Name="Colleges" EntityType="Self.Colleges" Schema="dbo" store:Type="Tables" />
  500. <EntitySet Name="Groupes" EntityType="Self.Groupes" Schema="dbo" store:Type="Tables" />
  501. <EntitySet Name="RestaurationFormulaires" EntityType="Self.RestaurationFormulaires" Schema="dbo" store:Type="Tables" />
  502. <EntitySet Name="RestaurationFormulairesRepas" EntityType="Self.RestaurationFormulairesRepas" Schema="dbo" store:Type="Tables" />
  503. <EntitySet Name="RestaurationParametres" EntityType="Self.RestaurationParametres" Schema="dbo" store:Type="Tables" />
  504. <EntitySet Name="RestaurationParametresRepas" EntityType="Self.RestaurationParametresRepas" Schema="dbo" store:Type="Tables" />
  505. <EntitySet Name="RestaurationTypes" EntityType="Self.RestaurationTypes" Schema="dbo" store:Type="Tables" />
  506. <EntitySet Name="RestaurationTypesRepas" EntityType="Self.RestaurationTypesRepas" Schema="dbo" store:Type="Tables" />
  507. <EntitySet Name="Territoires" EntityType="Self.Territoires" Schema="dbo" store:Type="Tables" />
  508. <EntitySet Name="TypesCollege" EntityType="Self.TypesCollege" Schema="dbo" store:Type="Tables" />
  509. <EntitySet Name="Utilisateurs" EntityType="Self.Utilisateurs" Schema="dbo" store:Type="Tables" />
  510. <AssociationSet Name="FK_ActionEduActeurs_ActionEduActeurRoles" Association="Self.FK_ActionEduActeurs_ActionEduActeurRoles">
  511. <End Role="ActionEduActeurRoles" EntitySet="ActionEduActeurRoles" />
  512. <End Role="ActionEduActeurs" EntitySet="ActionEduActeurs" />
  513. </AssociationSet>
  514. <AssociationSet Name="FK_ActionEduActionEduActeur" Association="Self.FK_ActionEduActionEduActeur">
  515. <End Role="ActionsEdu" EntitySet="ActionsEdu" />
  516. <End Role="ActionEduActeurs" EntitySet="ActionEduActeurs" />
  517. </AssociationSet>
  518. <AssociationSet Name="FK_ActionEduAnnee" Association="Self.FK_ActionEduAnnee">
  519. <End Role="Annees" EntitySet="Annees" />
  520. <End Role="ActionsEdu" EntitySet="ActionsEdu" />
  521. </AssociationSet>
  522. <AssociationSet Name="FK_ActionEduAxeActionEduThematique" Association="Self.FK_ActionEduAxeActionEduThematique">
  523. <End Role="ActionEduAxes" EntitySet="ActionEduAxes" />
  524. <End Role="ActionEduThematiques" EntitySet="ActionEduThematiques" />
  525. </AssociationSet>
  526. <AssociationSet Name="FK_ActionEduCollegeActionEdu" Association="Self.FK_ActionEduCollegeActionEdu">
  527. <End Role="ActionsEdu" EntitySet="ActionsEdu" />
  528. <End Role="ActionsEduColleges" EntitySet="ActionsEduColleges" />
  529. </AssociationSet>
  530. <AssociationSet Name="FK_ActionEduCollegeActionEduMission" Association="Self.FK_ActionEduCollegeActionEduMission">
  531. <End Role="ActionsEduColleges" EntitySet="ActionsEduColleges" />
  532. <End Role="ActionEduMissions" EntitySet="ActionEduMissions" />
  533. </AssociationSet>
  534. <AssociationSet Name="FK_ActionEduCollegeCollege" Association="Self.FK_ActionEduCollegeCollege">
  535. <End Role="Colleges" EntitySet="Colleges" />
  536. <End Role="ActionsEduColleges" EntitySet="ActionsEduColleges" />
  537. </AssociationSet>
  538. <AssociationSet Name="FK_ActionEduThematiqueActionEdu" Association="Self.FK_ActionEduThematiqueActionEdu">
  539. <End Role="ActionEduThematiques" EntitySet="ActionEduThematiques" />
  540. <End Role="ActionsEdu" EntitySet="ActionsEdu" />
  541. </AssociationSet>
  542. <AssociationSet Name="FK_ActionsEdu_ActionEduStatuts" Association="Self.FK_ActionsEdu_ActionEduStatuts">
  543. <End Role="ActionEduStatuts" EntitySet="ActionEduStatuts" />
  544. <End Role="ActionsEdu" EntitySet="ActionsEdu" />
  545. </AssociationSet>
  546. <AssociationSet Name="FK_AnneeCollege" Association="Self.FK_AnneeCollege">
  547. <End Role="Annees" EntitySet="Annees" />
  548. <End Role="Colleges" EntitySet="Colleges" />
  549. </AssociationSet>
  550. <AssociationSet Name="FK_Colleges_RestaurationTypes" Association="Self.FK_Colleges_RestaurationTypes">
  551. <End Role="RestaurationTypes" EntitySet="RestaurationTypes" />
  552. <End Role="Colleges" EntitySet="Colleges" />
  553. </AssociationSet>
  554. <AssociationSet Name="FK_Colleges_Territoires" Association="Self.FK_Colleges_Territoires">
  555. <End Role="Territoires" EntitySet="Territoires" />
  556. <End Role="Colleges" EntitySet="Colleges" />
  557. </AssociationSet>
  558. <AssociationSet Name="FK_Colleges_TypesCollege" Association="Self.FK_Colleges_TypesCollege">
  559. <End Role="TypesCollege" EntitySet="TypesCollege" />
  560. <End Role="Colleges" EntitySet="Colleges" />
  561. </AssociationSet>
  562. <AssociationSet Name="FK_GroupeUtilisateur" Association="Self.FK_GroupeUtilisateur">
  563. <End Role="Groupes" EntitySet="Groupes" />
  564. <End Role="Utilisateurs" EntitySet="Utilisateurs" />
  565. </AssociationSet>
  566. <AssociationSet Name="FK_RestaurationFormulairesColleges" Association="Self.FK_RestaurationFormulairesColleges">
  567. <End Role="Colleges" EntitySet="Colleges" />
  568. <End Role="RestaurationFormulaires" EntitySet="RestaurationFormulaires" />
  569. </AssociationSet>
  570. <AssociationSet Name="FK_RestaurationFormulairesRepasForm" Association="Self.FK_RestaurationFormulairesRepasForm">
  571. <End Role="RestaurationFormulaires" EntitySet="RestaurationFormulaires" />
  572. <End Role="RestaurationFormulairesRepas" EntitySet="RestaurationFormulairesRepas" />
  573. </AssociationSet>
  574. <AssociationSet Name="FK_RestaurationFormulairesTypesRepas" Association="Self.FK_RestaurationFormulairesTypesRepas">
  575. <End Role="RestaurationTypesRepas" EntitySet="RestaurationTypesRepas" />
  576. <End Role="RestaurationFormulairesRepas" EntitySet="RestaurationFormulairesRepas" />
  577. </AssociationSet>
  578. <AssociationSet Name="FK_RestaurationParametresAnnee" Association="Self.FK_RestaurationParametresAnnee">
  579. <End Role="Annees" EntitySet="Annees" />
  580. <End Role="RestaurationParametres" EntitySet="RestaurationParametres" />
  581. </AssociationSet>
  582. <AssociationSet Name="FK_RestaurationParametresRepas_Param" Association="Self.FK_RestaurationParametresRepas_Param">
  583. <End Role="RestaurationParametres" EntitySet="RestaurationParametres" />
  584. <End Role="RestaurationParametresRepas" EntitySet="RestaurationParametresRepas" />
  585. </AssociationSet>
  586. <AssociationSet Name="FK_RestaurationParametresRepas_Repas" Association="Self.FK_RestaurationParametresRepas_Repas">
  587. <End Role="RestaurationTypesRepas" EntitySet="RestaurationTypesRepas" />
  588. <End Role="RestaurationParametresRepas" EntitySet="RestaurationParametresRepas" />
  589. </AssociationSet>
  590. </EntityContainer>
  591. </Schema></edmx:StorageModels>
  592. <!-- CSDL content -->
  593. <edmx:ConceptualModels>
  594. <Schema Namespace="CD67.FicheCollege" 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">
  595. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  596. <EntitySet Name="TypesCollege" EntityType="CD67.FicheCollege.TypeCollege" />
  597. <EntitySet Name="Territoires" EntityType="CD67.FicheCollege.Territoire" />
  598. <EntitySet Name="Colleges" EntityType="CD67.FicheCollege.College" />
  599. <AssociationSet Name="FK_Colleges_Territoires" Association="CD67.FicheCollege.FK_Colleges_Territoires">
  600. <End Role="Territoire" EntitySet="Territoires" />
  601. <End Role="College" EntitySet="Colleges" />
  602. </AssociationSet>
  603. <AssociationSet Name="FK_Colleges_TypesCollege" Association="CD67.FicheCollege.FK_Colleges_TypesCollege">
  604. <End Role="TypeCollege" EntitySet="TypesCollege" />
  605. <End Role="College" EntitySet="Colleges" />
  606. </AssociationSet>
  607. <EntitySet Name="Annees" EntityType="CD67.FicheCollege.Annee" />
  608. <AssociationSet Name="AnneeCollege" Association="CD67.FicheCollege.AnneeCollege">
  609. <End Role="Annee" EntitySet="Annees" />
  610. <End Role="College" EntitySet="Colleges" />
  611. </AssociationSet>
  612. <EntitySet Name="ActionEduAxes" EntityType="CD67.FicheCollege.ActionEduAxe" />
  613. <EntitySet Name="ActionEduThematiques" EntityType="CD67.FicheCollege.ActionEduThematique" />
  614. <EntitySet Name="ActionsEdu" EntityType="CD67.FicheCollege.ActionEdu" />
  615. <AssociationSet Name="ActionEduAxeActionEduThematique" Association="CD67.FicheCollege.ActionEduAxeActionEduThematique">
  616. <End Role="ActionEduAxe" EntitySet="ActionEduAxes" />
  617. <End Role="ActionEduThematique" EntitySet="ActionEduThematiques" />
  618. </AssociationSet>
  619. <AssociationSet Name="ActionEduThematiqueActionEdu" Association="CD67.FicheCollege.ActionEduThematiqueActionEdu">
  620. <End Role="ActionEduThematique" EntitySet="ActionEduThematiques" />
  621. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  622. </AssociationSet>
  623. <AssociationSet Name="ActionEduAnnee" Association="CD67.FicheCollege.ActionEduAnnee">
  624. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  625. <End Role="Annee" EntitySet="Annees" />
  626. </AssociationSet>
  627. <EntitySet Name="ActionsEduColleges" EntityType="CD67.FicheCollege.ActionEduCollege" />
  628. <EntitySet Name="ActionEduMissions" EntityType="CD67.FicheCollege.ActionEduMission" />
  629. <AssociationSet Name="ActionEduCollegeActionEduMission" Association="CD67.FicheCollege.ActionEduCollegeActionEduMission">
  630. <End Role="ActionEduCollege" EntitySet="ActionsEduColleges" />
  631. <End Role="ActionEduMission" EntitySet="ActionEduMissions" />
  632. </AssociationSet>
  633. <AssociationSet Name="ActionEduCollegeCollege" Association="CD67.FicheCollege.ActionEduCollegeCollege">
  634. <End Role="ActionEduCollege" EntitySet="ActionsEduColleges" />
  635. <End Role="College" EntitySet="Colleges" />
  636. </AssociationSet>
  637. <AssociationSet Name="ActionEduCollegeActionEdu" Association="CD67.FicheCollege.ActionEduCollegeActionEdu">
  638. <End Role="ActionEduCollege" EntitySet="ActionsEduColleges" />
  639. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  640. </AssociationSet>
  641. <EntitySet Name="ActionEduActeurs" EntityType="CD67.FicheCollege.ActionEduActeur" />
  642. <EntitySet Name="ActionEduStatuts" EntityType="CD67.FicheCollege.ActionEduStatut" />
  643. <AssociationSet Name="FK_ActionEduActionEduActeur" Association="CD67.FicheCollege.FK_ActionEduActionEduActeur">
  644. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  645. <End Role="ActionEduActeur" EntitySet="ActionEduActeurs" />
  646. </AssociationSet>
  647. <AssociationSet Name="FK_ActionsEdu_ActionEduStatuts" Association="CD67.FicheCollege.FK_ActionsEdu_ActionEduStatuts">
  648. <End Role="ActionEduStatut1" EntitySet="ActionEduStatuts" />
  649. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  650. </AssociationSet>
  651. <EntitySet Name="ActionEduActeurRoles" EntityType="CD67.FicheCollege.ActionEduActeurRole" />
  652. <AssociationSet Name="FK_ActionEduActeurs_ActionEduActeurRoles" Association="CD67.FicheCollege.FK_ActionEduActeurs_ActionEduActeurRoles">
  653. <End Role="ActionEduActeurRole" EntitySet="ActionEduActeurRoles" />
  654. <End Role="ActionEduActeur" EntitySet="ActionEduActeurs" />
  655. </AssociationSet>
  656. <EntitySet Name="RestaurationTypes" EntityType="CD67.FicheCollege.RestaurationType" />
  657. <AssociationSet Name="FK_Colleges_RestaurationTypes" Association="CD67.FicheCollege.FK_Colleges_RestaurationTypes">
  658. <End Role="RestaurationType" EntitySet="RestaurationTypes" />
  659. <End Role="College" EntitySet="Colleges" />
  660. </AssociationSet>
  661. <EntitySet Name="RestaurationParametres" EntityType="CD67.FicheCollege.RestaurationParametre" />
  662. <AssociationSet Name="FK_RestaurationParametresAnnee" Association="CD67.FicheCollege.FK_RestaurationParametresAnnee">
  663. <End Role="Annee" EntitySet="Annees" />
  664. <End Role="RestaurationParametre" EntitySet="RestaurationParametres" />
  665. </AssociationSet>
  666. <EntitySet Name="RestaurationTypesRepas" EntityType="CD67.FicheCollege.RestaurationTypesRepa" />
  667. <AssociationSet Name="RestaurationParametresRepas1" Association="CD67.FicheCollege.RestaurationParametresRepas1">
  668. <End Role="RestaurationParametre" EntitySet="RestaurationParametres" />
  669. <End Role="RestaurationTypesRepa" EntitySet="RestaurationTypesRepas" />
  670. </AssociationSet>
  671. <EntitySet Name="RestaurationFormulaires" EntityType="CD67.FicheCollege.RestaurationFormulaire" />
  672. <EntitySet Name="RestaurationFormulairesRepas" EntityType="CD67.FicheCollege.RestaurationFormulairesRepa" />
  673. <AssociationSet Name="FK_RestaurationFormulairesColleges" Association="CD67.FicheCollege.FK_RestaurationFormulairesColleges">
  674. <End Role="College" EntitySet="Colleges" />
  675. <End Role="RestaurationFormulaire" EntitySet="RestaurationFormulaires" />
  676. </AssociationSet>
  677. <AssociationSet Name="FK_RestaurationFormulairesRepasForm" Association="CD67.FicheCollege.FK_RestaurationFormulairesRepasForm">
  678. <End Role="RestaurationFormulaire" EntitySet="RestaurationFormulaires" />
  679. <End Role="RestaurationFormulairesRepa" EntitySet="RestaurationFormulairesRepas" />
  680. </AssociationSet>
  681. <AssociationSet Name="FK_RestaurationFormulairesTypesRepas" Association="CD67.FicheCollege.FK_RestaurationFormulairesTypesRepas">
  682. <End Role="RestaurationTypesRepa" EntitySet="RestaurationTypesRepas" />
  683. <End Role="RestaurationFormulairesRepa" EntitySet="RestaurationFormulairesRepas" />
  684. </AssociationSet>
  685. <EntitySet Name="Groupes" EntityType="CD67.FicheCollege.Groupe" />
  686. <EntitySet Name="Utilisateurs" EntityType="CD67.FicheCollege.Utilisateur" />
  687. <AssociationSet Name="FK_GroupeUtilisateur" Association="CD67.FicheCollege.FK_GroupeUtilisateur">
  688. <End Role="Groupe" EntitySet="Groupes" />
  689. <End Role="Utilisateur" EntitySet="Utilisateurs" />
  690. </AssociationSet>
  691. </EntityContainer>
  692. <EntityType Name="TypeCollege">
  693. <Key>
  694. <PropertyRef Name="Id" />
  695. </Key>
  696. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  697. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  698. <Property Name="Ordre" Type="Int32" Nullable="false" />
  699. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="TypeCollege" ToRole="College" />
  700. </EntityType>
  701. <EntityType Name="Territoire">
  702. <Key>
  703. <PropertyRef Name="Id" />
  704. </Key>
  705. <Property Name="Id" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
  706. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  707. <Property Name="Referent_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  708. <Property Name="Referent_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  709. <Property Name="Referent_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  710. <Property Name="Referent_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  711. <Property Name="Referent_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  712. <Property Name="Referent_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  713. <Property Name="Ordre" Type="Int32" Nullable="false" />
  714. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="Territoire" ToRole="College" />
  715. </EntityType>
  716. <EntityType Name="College">
  717. <Key>
  718. <PropertyRef Name="Id" />
  719. </Key>
  720. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  721. <Property Name="Annee_Id" Type="Int32" Nullable="false" />
  722. <Property Name="CodeRne" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
  723. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  724. <Property Name="Adresse" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  725. <Property Name="Code_Postal" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  726. <Property Name="TypeCollege_Id" Type="Int32" Nullable="false" />
  727. <Property Name="Commune_Insee" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  728. <Property Name="Commune" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  729. <Property Name="Canton" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  730. <Property Name="Territoire_Id" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
  731. <Property Name="TAD" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  732. <Property Name="CDC" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  733. <Property Name="Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  734. <Property Name="Fax" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  735. <Property Name="Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  736. <NavigationProperty Name="Territoire" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="College" ToRole="Territoire" />
  737. <NavigationProperty Name="TypeCollege" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="College" ToRole="TypeCollege" />
  738. <NavigationProperty Name="Annee" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="College" ToRole="Annee" />
  739. <NavigationProperty Name="ActionsEduColleges" Relationship="CD67.FicheCollege.ActionEduCollegeCollege" FromRole="College" ToRole="ActionEduCollege" />
  740. <Property Name="PrincipalSid" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  741. <Property Name="AdjointSid" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  742. <Property Name="Gestionnaire1Sid" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  743. <Property Name="Gestionnaire2Sid" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  744. <Property Name="TokenId" Type="Guid" Nullable="false" />
  745. <Property Name="RestaurationType_Id" Type="Int32" />
  746. <NavigationProperty Name="RestaurationType" Relationship="CD67.FicheCollege.FK_Colleges_RestaurationTypes" FromRole="College" ToRole="RestaurationType" />
  747. <NavigationProperty Name="RestaurationFormulaires" Relationship="CD67.FicheCollege.FK_RestaurationFormulairesColleges" FromRole="College" ToRole="RestaurationFormulaire" />
  748. </EntityType>
  749. <Association Name="FK_Colleges_Territoires">
  750. <End Type="CD67.FicheCollege.Territoire" Role="Territoire" Multiplicity="0..1" />
  751. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  752. <ReferentialConstraint>
  753. <Principal Role="Territoire">
  754. <PropertyRef Name="Id" />
  755. </Principal>
  756. <Dependent Role="College">
  757. <PropertyRef Name="Territoire_Id" />
  758. </Dependent>
  759. </ReferentialConstraint>
  760. </Association>
  761. <Association Name="FK_Colleges_TypesCollege">
  762. <End Type="CD67.FicheCollege.TypeCollege" Role="TypeCollege" Multiplicity="1" />
  763. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  764. <ReferentialConstraint>
  765. <Principal Role="TypeCollege">
  766. <PropertyRef Name="Id" />
  767. </Principal>
  768. <Dependent Role="College">
  769. <PropertyRef Name="TypeCollege_Id" />
  770. </Dependent>
  771. </ReferentialConstraint>
  772. </Association>
  773. <EntityType Name="Annee">
  774. <Key>
  775. <PropertyRef Name="Id" />
  776. </Key>
  777. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  778. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="Annee" ToRole="College" />
  779. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="12" FixedLength="false" Unicode="true" />
  780. <NavigationProperty Name="ActionsEdu" Relationship="CD67.FicheCollege.ActionEduAnnee" FromRole="Annee" ToRole="ActionEdu" />
  781. <Property Name="AnneeRentree" Type="Int32" Nullable="false" />
  782. <NavigationProperty Name="RestaurationParametres" Relationship="CD67.FicheCollege.FK_RestaurationParametresAnnee" FromRole="Annee" ToRole="RestaurationParametre" />
  783. </EntityType>
  784. <Association Name="AnneeCollege">
  785. <End Type="CD67.FicheCollege.Annee" Role="Annee" Multiplicity="1" />
  786. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  787. <ReferentialConstraint>
  788. <Principal Role="Annee">
  789. <PropertyRef Name="Id" />
  790. </Principal>
  791. <Dependent Role="College">
  792. <PropertyRef Name="Annee_Id" />
  793. </Dependent>
  794. </ReferentialConstraint>
  795. </Association>
  796. <EntityType Name="ActionEduAxe">
  797. <Key>
  798. <PropertyRef Name="Id" />
  799. </Key>
  800. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  801. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  802. <Property Name="Neutralise" Type="Boolean" Nullable="false" DefaultValue="False" />
  803. <Property Name="Ordre" Type="Int32" Nullable="false" />
  804. <NavigationProperty Name="ActionEduThematiques" Relationship="CD67.FicheCollege.ActionEduAxeActionEduThematique" FromRole="ActionEduAxe" ToRole="ActionEduThematique" />
  805. </EntityType>
  806. <EntityType Name="ActionEduThematique">
  807. <Key>
  808. <PropertyRef Name="Id" />
  809. </Key>
  810. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  811. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  812. <Property Name="Neutralise" Type="Boolean" Nullable="false" DefaultValue="False" />
  813. <Property Name="Ordre" Type="Int32" Nullable="false" />
  814. <NavigationProperty Name="ActionEduAxe" Relationship="CD67.FicheCollege.ActionEduAxeActionEduThematique" FromRole="ActionEduThematique" ToRole="ActionEduAxe" />
  815. <Property Name="ActionEduAxeId" Type="Int32" Nullable="false" />
  816. <NavigationProperty Name="ActionEdus" Relationship="CD67.FicheCollege.ActionEduThematiqueActionEdu" FromRole="ActionEduThematique" ToRole="ActionEdu" />
  817. </EntityType>
  818. <EntityType Name="ActionEdu">
  819. <Key>
  820. <PropertyRef Name="Id" />
  821. </Key>
  822. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  823. <Property Name="Numero" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  824. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  825. <Property Name="Montant" Type="Decimal" Precision="18" Scale="0" Nullable="true" />
  826. <Property Name="Description" Type="String" Nullable="true" MaxLength="Max" Unicode="true" FixedLength="false" />
  827. <Property Name="CommentairePublic" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  828. <Property Name="CommentaireInterne" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  829. <Property Name="Neutralise" Type="Boolean" Nullable="false" />
  830. <Property Name="Ordre" Type="Int32" Nullable="false" />
  831. <NavigationProperty Name="ActionEduThematique" Relationship="CD67.FicheCollege.ActionEduThematiqueActionEdu" FromRole="ActionEdu" ToRole="ActionEduThematique" />
  832. <Property Name="ActionEduThematiqueId" Type="Int32" Nullable="false" />
  833. <NavigationProperty Name="Annee" Relationship="CD67.FicheCollege.ActionEduAnnee" FromRole="ActionEdu" ToRole="Annee" />
  834. <Property Name="AnneeId" Type="Int32" Nullable="false" />
  835. <NavigationProperty Name="ActionsEduColleges" Relationship="CD67.FicheCollege.ActionEduCollegeActionEdu" FromRole="ActionEdu" ToRole="ActionEduCollege" />
  836. <Property Name="TokenId" Type="Guid" Nullable="false" />
  837. <Property Name="StatutId" Type="Int32" Nullable="false" />
  838. <NavigationProperty Name="ActionEduActeurs" Relationship="CD67.FicheCollege.FK_ActionEduActionEduActeur" FromRole="ActionEdu" ToRole="ActionEduActeur" />
  839. <NavigationProperty Name="ActionEduStatut" Relationship="CD67.FicheCollege.FK_ActionsEdu_ActionEduStatuts" FromRole="ActionEdu" ToRole="ActionEduStatut1" />
  840. </EntityType>
  841. <Association Name="ActionEduAxeActionEduThematique">
  842. <End Type="CD67.FicheCollege.ActionEduAxe" Role="ActionEduAxe" Multiplicity="1" />
  843. <End Type="CD67.FicheCollege.ActionEduThematique" Role="ActionEduThematique" Multiplicity="*" />
  844. <ReferentialConstraint>
  845. <Principal Role="ActionEduAxe">
  846. <PropertyRef Name="Id" />
  847. </Principal>
  848. <Dependent Role="ActionEduThematique">
  849. <PropertyRef Name="ActionEduAxeId" />
  850. </Dependent>
  851. </ReferentialConstraint>
  852. </Association>
  853. <Association Name="ActionEduThematiqueActionEdu">
  854. <End Type="CD67.FicheCollege.ActionEduThematique" Role="ActionEduThematique" Multiplicity="1" />
  855. <End Type="CD67.FicheCollege.ActionEdu" Role="ActionEdu" Multiplicity="*" />
  856. <ReferentialConstraint>
  857. <Principal Role="ActionEduThematique">
  858. <PropertyRef Name="Id" />
  859. </Principal>
  860. <Dependent Role="ActionEdu">
  861. <PropertyRef Name="ActionEduThematiqueId" />
  862. </Dependent>
  863. </ReferentialConstraint>
  864. </Association>
  865. <Association Name="ActionEduAnnee">
  866. <End Type="CD67.FicheCollege.ActionEdu" Role="ActionEdu" Multiplicity="*" />
  867. <End Type="CD67.FicheCollege.Annee" Role="Annee" Multiplicity="1" />
  868. <ReferentialConstraint>
  869. <Principal Role="Annee">
  870. <PropertyRef Name="Id" />
  871. </Principal>
  872. <Dependent Role="ActionEdu">
  873. <PropertyRef Name="AnneeId" />
  874. </Dependent>
  875. </ReferentialConstraint>
  876. </Association>
  877. <EntityType Name="ActionEduCollege">
  878. <Key>
  879. <PropertyRef Name="Id" />
  880. </Key>
  881. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  882. <Property Name="NbEleves" Type="Int32" Nullable="true" />
  883. <NavigationProperty Name="ActionEduMissions" Relationship="CD67.FicheCollege.ActionEduCollegeActionEduMission" FromRole="ActionEduCollege" ToRole="ActionEduMission" />
  884. <NavigationProperty Name="College" Relationship="CD67.FicheCollege.ActionEduCollegeCollege" FromRole="ActionEduCollege" ToRole="College" />
  885. <Property Name="Commentaire" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  886. <Property Name="CollegeId" Type="Int32" Nullable="false" />
  887. <NavigationProperty Name="ActionEdu" Relationship="CD67.FicheCollege.ActionEduCollegeActionEdu" FromRole="ActionEduCollege" ToRole="ActionEdu" />
  888. <Property Name="ActionEduId" Type="Int32" Nullable="false" />
  889. </EntityType>
  890. <EntityType Name="ActionEduMission">
  891. <Key>
  892. <PropertyRef Name="Id" />
  893. </Key>
  894. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  895. <Property Name="Code" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  896. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  897. <Property Name="Description" Type="String" Nullable="true" MaxLength="Max" Unicode="true" FixedLength="false" />
  898. <NavigationProperty Name="ActionEduCollege" Relationship="CD67.FicheCollege.ActionEduCollegeActionEduMission" FromRole="ActionEduMission" ToRole="ActionEduCollege" />
  899. <Property Name="ActionEduCollegeId" Type="Int32" Nullable="false" />
  900. </EntityType>
  901. <Association Name="ActionEduCollegeActionEduMission">
  902. <End Type="CD67.FicheCollege.ActionEduCollege" Role="ActionEduCollege" Multiplicity="1" />
  903. <End Type="CD67.FicheCollege.ActionEduMission" Role="ActionEduMission" Multiplicity="*" />
  904. <ReferentialConstraint>
  905. <Principal Role="ActionEduCollege">
  906. <PropertyRef Name="Id" />
  907. </Principal>
  908. <Dependent Role="ActionEduMission">
  909. <PropertyRef Name="ActionEduCollegeId" />
  910. </Dependent>
  911. </ReferentialConstraint>
  912. </Association>
  913. <Association Name="ActionEduCollegeCollege">
  914. <End Type="CD67.FicheCollege.ActionEduCollege" Role="ActionEduCollege" Multiplicity="*" />
  915. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="1" />
  916. <ReferentialConstraint>
  917. <Principal Role="College">
  918. <PropertyRef Name="Id" />
  919. </Principal>
  920. <Dependent Role="ActionEduCollege">
  921. <PropertyRef Name="CollegeId" />
  922. </Dependent>
  923. </ReferentialConstraint>
  924. </Association>
  925. <Association Name="ActionEduCollegeActionEdu">
  926. <End Type="CD67.FicheCollege.ActionEduCollege" Role="ActionEduCollege" Multiplicity="*" />
  927. <End Type="CD67.FicheCollege.ActionEdu" Role="ActionEdu" Multiplicity="1" />
  928. <ReferentialConstraint>
  929. <Principal Role="ActionEdu">
  930. <PropertyRef Name="Id" />
  931. </Principal>
  932. <Dependent Role="ActionEduCollege">
  933. <PropertyRef Name="ActionEduId" />
  934. </Dependent>
  935. </ReferentialConstraint>
  936. </Association>
  937. <EntityType Name="ActionEduActeur">
  938. <Key>
  939. <PropertyRef Name="Id" />
  940. </Key>
  941. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  942. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" FixedLength="false" Unicode="false" />
  943. <Property Name="Sid" Type="String" MaxLength="7" FixedLength="false" Unicode="true" />
  944. <Property Name="RoleId" Type="Int32" Nullable="false" />
  945. <Property Name="Commentaire" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  946. <Property Name="ActionEduId" Type="Int32" Nullable="false" />
  947. <NavigationProperty Name="ActionEdu" Relationship="CD67.FicheCollege.FK_ActionEduActionEduActeur" FromRole="ActionEduActeur" ToRole="ActionEdu" />
  948. <NavigationProperty Name="ActionEduActeurRole" Relationship="CD67.FicheCollege.FK_ActionEduActeurs_ActionEduActeurRoles" FromRole="ActionEduActeur" ToRole="ActionEduActeurRole" />
  949. </EntityType>
  950. <EntityType Name="ActionEduStatut">
  951. <Key>
  952. <PropertyRef Name="Id" />
  953. </Key>
  954. <Property Name="Id" Type="Int32" Nullable="false" />
  955. <Property Name="Nom" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  956. <NavigationProperty Name="ActionsEdus" Relationship="CD67.FicheCollege.FK_ActionsEdu_ActionEduStatuts" FromRole="ActionEduStatut1" ToRole="ActionEdu" />
  957. </EntityType>
  958. <Association Name="FK_ActionEduActionEduActeur">
  959. <End Type="CD67.FicheCollege.ActionEdu" Role="ActionEdu" Multiplicity="1" />
  960. <End Type="CD67.FicheCollege.ActionEduActeur" Role="ActionEduActeur" Multiplicity="*" />
  961. <ReferentialConstraint>
  962. <Principal Role="ActionEdu">
  963. <PropertyRef Name="Id" />
  964. </Principal>
  965. <Dependent Role="ActionEduActeur">
  966. <PropertyRef Name="ActionEduId" />
  967. </Dependent>
  968. </ReferentialConstraint>
  969. </Association>
  970. <Association Name="FK_ActionsEdu_ActionEduStatuts">
  971. <End Type="CD67.FicheCollege.ActionEduStatut" Role="ActionEduStatut1" Multiplicity="1" />
  972. <End Type="CD67.FicheCollege.ActionEdu" Role="ActionEdu" Multiplicity="*" />
  973. <ReferentialConstraint>
  974. <Principal Role="ActionEduStatut1">
  975. <PropertyRef Name="Id" />
  976. </Principal>
  977. <Dependent Role="ActionEdu">
  978. <PropertyRef Name="StatutId" />
  979. </Dependent>
  980. </ReferentialConstraint>
  981. </Association>
  982. <EntityType Name="ActionEduActeurRole">
  983. <Key>
  984. <PropertyRef Name="Id" />
  985. </Key>
  986. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  987. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  988. <Property Name="Ordre" Type="Int32" Nullable="false" />
  989. <NavigationProperty Name="ActionEduActeurs" Relationship="CD67.FicheCollege.FK_ActionEduActeurs_ActionEduActeurRoles" FromRole="ActionEduActeurRole" ToRole="ActionEduActeur" />
  990. </EntityType>
  991. <Association Name="FK_ActionEduActeurs_ActionEduActeurRoles">
  992. <End Type="CD67.FicheCollege.ActionEduActeurRole" Role="ActionEduActeurRole" Multiplicity="1" />
  993. <End Type="CD67.FicheCollege.ActionEduActeur" Role="ActionEduActeur" Multiplicity="*" />
  994. <ReferentialConstraint>
  995. <Principal Role="ActionEduActeurRole">
  996. <PropertyRef Name="Id" />
  997. </Principal>
  998. <Dependent Role="ActionEduActeur">
  999. <PropertyRef Name="RoleId" />
  1000. </Dependent>
  1001. </ReferentialConstraint>
  1002. </Association>
  1003. <EntityType Name="RestaurationType">
  1004. <Key>
  1005. <PropertyRef Name="Id" />
  1006. </Key>
  1007. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  1008. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  1009. <Property Name="Valid" Type="Boolean" Nullable="false" />
  1010. <Property Name="Ordre" Type="Int32" Nullable="false" />
  1011. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_RestaurationTypes" FromRole="RestaurationType" ToRole="College" />
  1012. </EntityType>
  1013. <Association Name="FK_Colleges_RestaurationTypes">
  1014. <End Type="CD67.FicheCollege.RestaurationType" Role="RestaurationType" Multiplicity="0..1" />
  1015. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  1016. <ReferentialConstraint>
  1017. <Principal Role="RestaurationType">
  1018. <PropertyRef Name="Id" />
  1019. </Principal>
  1020. <Dependent Role="College">
  1021. <PropertyRef Name="RestaurationType_Id" />
  1022. </Dependent>
  1023. </ReferentialConstraint>
  1024. </Association>
  1025. <EntityType Name="RestaurationParametre">
  1026. <Key>
  1027. <PropertyRef Name="Id" />
  1028. </Key>
  1029. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  1030. <Property Name="Annee_Id" Type="Int32" Nullable="false" />
  1031. <Property Name="Campagne" Type="Boolean" Nullable="false" />
  1032. <Property Name="Prix_Mini" Type="Decimal" Precision="18" Scale="2" />
  1033. <Property Name="Prix_ATC" Type="Decimal" Precision="18" Scale="2" />
  1034. <Property Name="Prix_AgentC" Type="Decimal" Precision="18" Scale="2" />
  1035. <Property Name="Prix_MiniAutres" Type="Decimal" Precision="18" Scale="2" />
  1036. <NavigationProperty Name="Annee" Relationship="CD67.FicheCollege.FK_RestaurationParametresAnnee" FromRole="RestaurationParametre" ToRole="Annee" />
  1037. <NavigationProperty Name="RestaurationTypesRepas" Relationship="CD67.FicheCollege.RestaurationParametresRepas1" FromRole="RestaurationParametre" ToRole="RestaurationTypesRepa" />
  1038. </EntityType>
  1039. <Association Name="FK_RestaurationParametresAnnee">
  1040. <End Type="CD67.FicheCollege.Annee" Role="Annee" Multiplicity="1" />
  1041. <End Type="CD67.FicheCollege.RestaurationParametre" Role="RestaurationParametre" Multiplicity="*" />
  1042. <ReferentialConstraint>
  1043. <Principal Role="Annee">
  1044. <PropertyRef Name="Id" />
  1045. </Principal>
  1046. <Dependent Role="RestaurationParametre">
  1047. <PropertyRef Name="Annee_Id" />
  1048. </Dependent>
  1049. </ReferentialConstraint>
  1050. </Association>
  1051. <EntityType Name="RestaurationTypesRepa">
  1052. <Key>
  1053. <PropertyRef Name="Id" />
  1054. </Key>
  1055. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  1056. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  1057. <Property Name="Valid" Type="Boolean" Nullable="false" />
  1058. <Property Name="Ordre" Type="Int32" Nullable="false" />
  1059. <NavigationProperty Name="RestaurationParametres" Relationship="CD67.FicheCollege.RestaurationParametresRepas1" FromRole="RestaurationTypesRepa" ToRole="RestaurationParametre" />
  1060. <NavigationProperty Name="RestaurationFormulairesRepas" Relationship="CD67.FicheCollege.FK_RestaurationFormulairesTypesRepas" FromRole="RestaurationTypesRepa" ToRole="RestaurationFormulairesRepa" />
  1061. </EntityType>
  1062. <Association Name="RestaurationParametresRepas1">
  1063. <End Type="CD67.FicheCollege.RestaurationParametre" Role="RestaurationParametre" Multiplicity="*" />
  1064. <End Type="CD67.FicheCollege.RestaurationTypesRepa" Role="RestaurationTypesRepa" Multiplicity="*" />
  1065. </Association>
  1066. <EntityType Name="RestaurationFormulaire">
  1067. <Key>
  1068. <PropertyRef Name="Id" />
  1069. </Key>
  1070. <Property Name="Id" Type="Guid" Nullable="false" />
  1071. <Property Name="College_Id" Type="Int32" Nullable="false" />
  1072. <Property Name="Statut" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  1073. <Property Name="NbDP_College" Type="Int32" Nullable="false" />
  1074. <Property Name="NbDP_Lycee" Type="Int32" />
  1075. <Property Name="NbDP_MatPrimPeri" Type="Int32" />
  1076. <Property Name="NbDP_Commensaux" Type="Int32" />
  1077. <Property Name="NbDP_ATC" Type="Int32" />
  1078. <Property Name="NbDP_AgentC" Type="Int32" />
  1079. <Property Name="Prix_Forfait5j" Type="Decimal" Precision="18" Scale="2" />
  1080. <Property Name="NbJours_Forfait5j" Type="Int32" />
  1081. <Property Name="Prix_Forfait4j" Type="Decimal" Precision="18" Scale="2" />
  1082. <Property Name="NbJours_Forfait4j" Type="Int32" />
  1083. <Property Name="Prix_Forfait3j" Type="Decimal" Precision="18" Scale="2" />
  1084. <Property Name="NbJours_Forfait3j" Type="Int32" />
  1085. <Property Name="Prix_Forfait2j" Type="Decimal" Precision="18" Scale="2" />
  1086. <Property Name="NbJours_Forfait2j" Type="Int32" />
  1087. <Property Name="Prix_Forfait1j" Type="Decimal" Precision="18" Scale="2" />
  1088. <Property Name="NbJours_Forfait1j" Type="Int32" />
  1089. <Property Name="Prix_Ticket" Type="Decimal" Nullable="false" Precision="18" Scale="2" />
  1090. <Property Name="Tarif_Pension" Type="Decimal" Precision="18" Scale="2" />
  1091. <Property Name="Prix_ATC" Type="Decimal" Nullable="false" Precision="18" Scale="2" />
  1092. <Property Name="Prix_AgentC" Type="Decimal" Nullable="false" Precision="18" Scale="2" />
  1093. <Property Name="Prix_Commensaux" Type="Decimal" Precision="18" Scale="2" />
  1094. <Property Name="Prix_EcolePeri" Type="Decimal" Precision="18" Scale="2" />
  1095. <Property Name="NbEleves_FondSocial" Type="Int32" />
  1096. <Property Name="Montant_FondSocial" Type="Decimal" Precision="18" Scale="2" />
  1097. <Property Name="NbEleves_Impayes" Type="Int32" />
  1098. <Property Name="Montant_Impayes" Type="Decimal" Precision="18" Scale="2" />
  1099. <Property Name="Date_AvisCA" Type="DateTime" Precision="7" />
  1100. <Property Name="Ind_Signature" Type="Boolean" Nullable="false" />
  1101. <NavigationProperty Name="College" Relationship="CD67.FicheCollege.FK_RestaurationFormulairesColleges" FromRole="RestaurationFormulaire" ToRole="College" />
  1102. <NavigationProperty Name="RestaurationFormulairesRepas" Relationship="CD67.FicheCollege.FK_RestaurationFormulairesRepasForm" FromRole="RestaurationFormulaire" ToRole="RestaurationFormulairesRepa" />
  1103. </EntityType>
  1104. <EntityType Name="RestaurationFormulairesRepa">
  1105. <Key>
  1106. <PropertyRef Name="Id" />
  1107. </Key>
  1108. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  1109. <Property Name="RestaurationFormulaires_Id" Type="Guid" Nullable="false" />
  1110. <Property Name="RestaurationTypesRepas_Id" Type="Int32" Nullable="false" />
  1111. <Property Name="NbRepas" Type="Int32" />
  1112. <Property Name="NbJours" Type="Int32" />
  1113. <Property Name="NomEtablissement" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  1114. <NavigationProperty Name="RestaurationFormulaire" Relationship="CD67.FicheCollege.FK_RestaurationFormulairesRepasForm" FromRole="RestaurationFormulairesRepa" ToRole="RestaurationFormulaire" />
  1115. <NavigationProperty Name="RestaurationTypesRepa" Relationship="CD67.FicheCollege.FK_RestaurationFormulairesTypesRepas" FromRole="RestaurationFormulairesRepa" ToRole="RestaurationTypesRepa" />
  1116. </EntityType>
  1117. <Association Name="FK_RestaurationFormulairesColleges">
  1118. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="1" />
  1119. <End Type="CD67.FicheCollege.RestaurationFormulaire" Role="RestaurationFormulaire" Multiplicity="*" />
  1120. <ReferentialConstraint>
  1121. <Principal Role="College">
  1122. <PropertyRef Name="Id" />
  1123. </Principal>
  1124. <Dependent Role="RestaurationFormulaire">
  1125. <PropertyRef Name="College_Id" />
  1126. </Dependent>
  1127. </ReferentialConstraint>
  1128. </Association>
  1129. <Association Name="FK_RestaurationFormulairesRepasForm">
  1130. <End Type="CD67.FicheCollege.RestaurationFormulaire" Role="RestaurationFormulaire" Multiplicity="1" />
  1131. <End Type="CD67.FicheCollege.RestaurationFormulairesRepa" Role="RestaurationFormulairesRepa" Multiplicity="*" />
  1132. <ReferentialConstraint>
  1133. <Principal Role="RestaurationFormulaire">
  1134. <PropertyRef Name="Id" />
  1135. </Principal>
  1136. <Dependent Role="RestaurationFormulairesRepa">
  1137. <PropertyRef Name="RestaurationFormulaires_Id" />
  1138. </Dependent>
  1139. </ReferentialConstraint>
  1140. </Association>
  1141. <Association Name="FK_RestaurationFormulairesTypesRepas">
  1142. <End Type="CD67.FicheCollege.RestaurationTypesRepa" Role="RestaurationTypesRepa" Multiplicity="1" />
  1143. <End Type="CD67.FicheCollege.RestaurationFormulairesRepa" Role="RestaurationFormulairesRepa" Multiplicity="*" />
  1144. <ReferentialConstraint>
  1145. <Principal Role="RestaurationTypesRepa">
  1146. <PropertyRef Name="Id" />
  1147. </Principal>
  1148. <Dependent Role="RestaurationFormulairesRepa">
  1149. <PropertyRef Name="RestaurationTypesRepas_Id" />
  1150. </Dependent>
  1151. </ReferentialConstraint>
  1152. </Association>
  1153. <EntityType Name="Groupe">
  1154. <Key>
  1155. <PropertyRef Name="Id" />
  1156. </Key>
  1157. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  1158. <Property Name="Nom" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  1159. <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  1160. <NavigationProperty Name="Utilisateurs" Relationship="CD67.FicheCollege.FK_GroupeUtilisateur" FromRole="Groupe" ToRole="Utilisateur" />
  1161. </EntityType>
  1162. <EntityType Name="Utilisateur">
  1163. <Key>
  1164. <PropertyRef Name="Id" />
  1165. </Key>
  1166. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  1167. <Property Name="Sid" Type="String" Nullable="false" MaxLength="64" FixedLength="false" Unicode="true" />
  1168. <Property Name="GroupeId" Type="Int32" Nullable="false" />
  1169. <NavigationProperty Name="Groupe" Relationship="CD67.FicheCollege.FK_GroupeUtilisateur" FromRole="Utilisateur" ToRole="Groupe" />
  1170. </EntityType>
  1171. <Association Name="FK_GroupeUtilisateur">
  1172. <End Type="CD67.FicheCollege.Groupe" Role="Groupe" Multiplicity="1" />
  1173. <End Type="CD67.FicheCollege.Utilisateur" Role="Utilisateur" Multiplicity="*" />
  1174. <ReferentialConstraint>
  1175. <Principal Role="Groupe">
  1176. <PropertyRef Name="Id" />
  1177. </Principal>
  1178. <Dependent Role="Utilisateur">
  1179. <PropertyRef Name="GroupeId" />
  1180. </Dependent>
  1181. </ReferentialConstraint>
  1182. </Association>
  1183. </Schema>
  1184. </edmx:ConceptualModels>
  1185. <!-- C-S mapping content -->
  1186. <edmx:Mappings>
  1187. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  1188. <EntityContainerMapping StorageEntityContainer="CD67FicheCollegeStoreContainer" CdmEntityContainer="Entities">
  1189. <EntitySetMapping Name="TypesCollege">
  1190. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.TypeCollege)">
  1191. <MappingFragment StoreEntitySet="TypesCollege">
  1192. <ScalarProperty Name="Id" ColumnName="Id" />
  1193. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  1194. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1195. </MappingFragment>
  1196. </EntityTypeMapping>
  1197. </EntitySetMapping>
  1198. <EntitySetMapping Name="Territoires">
  1199. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Territoire)">
  1200. <MappingFragment StoreEntitySet="Territoires">
  1201. <ScalarProperty Name="Id" ColumnName="Id" />
  1202. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  1203. <ScalarProperty Name="Referent_SID" ColumnName="Referent_SID" />
  1204. <ScalarProperty Name="Referent_Nom" ColumnName="Referent_Nom" />
  1205. <ScalarProperty Name="Referent_Prenom" ColumnName="Referent_Prenom" />
  1206. <ScalarProperty Name="Referent_Structure" ColumnName="Referent_Structure" />
  1207. <ScalarProperty Name="Referent_Login" ColumnName="Referent_Login" />
  1208. <ScalarProperty Name="Referent_Email" ColumnName="Referent_Email" />
  1209. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1210. </MappingFragment>
  1211. </EntityTypeMapping>
  1212. </EntitySetMapping>
  1213. <EntitySetMapping Name="Colleges">
  1214. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.College)">
  1215. <MappingFragment StoreEntitySet="Colleges">
  1216. <ScalarProperty Name="RestaurationType_Id" ColumnName="RestaurationType_Id" />
  1217. <ScalarProperty Name="TokenId" ColumnName="TokenId" />
  1218. <ScalarProperty Name="Gestionnaire2Sid" ColumnName="Gestionnaire2Sid" />
  1219. <ScalarProperty Name="Gestionnaire1Sid" ColumnName="Gestionnaire1Sid" />
  1220. <ScalarProperty Name="AdjointSid" ColumnName="AdjointSid" />
  1221. <ScalarProperty Name="PrincipalSid" ColumnName="PrincipalSid" />
  1222. <ScalarProperty Name="Id" ColumnName="Id" />
  1223. <ScalarProperty Name="Annee_Id" ColumnName="Annee_Id" />
  1224. <ScalarProperty Name="CodeRne" ColumnName="CodeRne" />
  1225. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  1226. <ScalarProperty Name="Adresse" ColumnName="Adresse" />
  1227. <ScalarProperty Name="Code_Postal" ColumnName="Code_Postal" />
  1228. <ScalarProperty Name="TypeCollege_Id" ColumnName="TypeCollege_Id" />
  1229. <ScalarProperty Name="Commune_Insee" ColumnName="Commune_Insee" />
  1230. <ScalarProperty Name="Commune" ColumnName="Commune" />
  1231. <ScalarProperty Name="Canton" ColumnName="Canton" />
  1232. <ScalarProperty Name="Territoire_Id" ColumnName="Territoire_Id" />
  1233. <ScalarProperty Name="TAD" ColumnName="TAD" />
  1234. <ScalarProperty Name="CDC" ColumnName="CDC" />
  1235. <ScalarProperty Name="Tel" ColumnName="Tel" />
  1236. <ScalarProperty Name="Fax" ColumnName="Fax" />
  1237. <ScalarProperty Name="Email" ColumnName="Email" />
  1238. </MappingFragment>
  1239. </EntityTypeMapping>
  1240. </EntitySetMapping>
  1241. <EntitySetMapping Name="Annees">
  1242. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Annee)">
  1243. <MappingFragment StoreEntitySet="Annees">
  1244. <ScalarProperty Name="AnneeRentree" ColumnName="AnneeRentree" />
  1245. <ScalarProperty Name="Id" ColumnName="Id" />
  1246. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  1247. </MappingFragment>
  1248. </EntityTypeMapping>
  1249. </EntitySetMapping>
  1250. <EntitySetMapping Name="ActionEduAxes">
  1251. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEduAxe)">
  1252. <MappingFragment StoreEntitySet="ActionEduAxes">
  1253. <ScalarProperty Name="Id" ColumnName="Id" />
  1254. <ScalarProperty Name="Nom" ColumnName="Nom" />
  1255. <ScalarProperty Name="Neutralise" ColumnName="Neutralise" />
  1256. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1257. </MappingFragment>
  1258. </EntityTypeMapping>
  1259. </EntitySetMapping>
  1260. <EntitySetMapping Name="ActionEduThematiques">
  1261. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEduThematique)">
  1262. <MappingFragment StoreEntitySet="ActionEduThematiques">
  1263. <ScalarProperty Name="Id" ColumnName="Id" />
  1264. <ScalarProperty Name="Nom" ColumnName="Nom" />
  1265. <ScalarProperty Name="Neutralise" ColumnName="Neutralise" />
  1266. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1267. <ScalarProperty Name="ActionEduAxeId" ColumnName="ActionEduAxeId" />
  1268. </MappingFragment>
  1269. </EntityTypeMapping>
  1270. </EntitySetMapping>
  1271. <EntitySetMapping Name="ActionsEdu">
  1272. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEdu)">
  1273. <MappingFragment StoreEntitySet="ActionsEdu">
  1274. <ScalarProperty Name="StatutId" ColumnName="StatutId" />
  1275. <ScalarProperty Name="TokenId" ColumnName="TokenId" />
  1276. <ScalarProperty Name="CommentairePublic" ColumnName="CommentairePublic" />
  1277. <ScalarProperty Name="CommentaireInterne" ColumnName="CommentaireInterne" />
  1278. <ScalarProperty Name="Montant" ColumnName="Montant" />
  1279. <ScalarProperty Name="Id" ColumnName="Id" />
  1280. <ScalarProperty Name="Numero" ColumnName="Numero" />
  1281. <ScalarProperty Name="Nom" ColumnName="Nom" />
  1282. <ScalarProperty Name="Description" ColumnName="Description" />
  1283. <ScalarProperty Name="Neutralise" ColumnName="Neutralise" />
  1284. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1285. <ScalarProperty Name="ActionEduThematiqueId" ColumnName="ActionEduThematiqueId" />
  1286. <ScalarProperty Name="AnneeId" ColumnName="AnneeId" />
  1287. </MappingFragment>
  1288. </EntityTypeMapping>
  1289. </EntitySetMapping>
  1290. <EntitySetMapping Name="ActionsEduColleges">
  1291. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEduCollege)">
  1292. <MappingFragment StoreEntitySet="ActionsEduColleges">
  1293. <ScalarProperty Name="Commentaire" ColumnName="Commentaire" />
  1294. <ScalarProperty Name="Id" ColumnName="Id" />
  1295. <ScalarProperty Name="NbEleves" ColumnName="NbEleves" />
  1296. <ScalarProperty Name="CollegeId" ColumnName="CollegeId" />
  1297. <ScalarProperty Name="ActionEduId" ColumnName="ActionEduId" />
  1298. </MappingFragment>
  1299. </EntityTypeMapping>
  1300. </EntitySetMapping>
  1301. <EntitySetMapping Name="ActionEduMissions">
  1302. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEduMission)">
  1303. <MappingFragment StoreEntitySet="ActionEduMissions">
  1304. <ScalarProperty Name="Id" ColumnName="Id" />
  1305. <ScalarProperty Name="Code" ColumnName="Code" />
  1306. <ScalarProperty Name="Nom" ColumnName="Nom" />
  1307. <ScalarProperty Name="Description" ColumnName="Description" />
  1308. <ScalarProperty Name="ActionEduCollegeId" ColumnName="ActionEduCollegeId" />
  1309. </MappingFragment>
  1310. </EntityTypeMapping>
  1311. </EntitySetMapping>
  1312. <EntitySetMapping Name="ActionEduActeurs">
  1313. <EntityTypeMapping TypeName="CD67.FicheCollege.ActionEduActeur">
  1314. <MappingFragment StoreEntitySet="ActionEduActeurs">
  1315. <ScalarProperty Name="Commentaire" ColumnName="Commentaire" />
  1316. <ScalarProperty Name="ActionEduId" ColumnName="ActionEduId" />
  1317. <ScalarProperty Name="RoleId" ColumnName="RoleId" />
  1318. <ScalarProperty Name="Sid" ColumnName="Sid" />
  1319. <ScalarProperty Name="Nom" ColumnName="Nom" />
  1320. <ScalarProperty Name="Id" ColumnName="Id" />
  1321. </MappingFragment>
  1322. </EntityTypeMapping>
  1323. </EntitySetMapping>
  1324. <EntitySetMapping Name="ActionEduStatuts">
  1325. <EntityTypeMapping TypeName="CD67.FicheCollege.ActionEduStatut">
  1326. <MappingFragment StoreEntitySet="ActionEduStatuts">
  1327. <ScalarProperty Name="Nom" ColumnName="Nom" />
  1328. <ScalarProperty Name="Id" ColumnName="Id" />
  1329. </MappingFragment>
  1330. </EntityTypeMapping>
  1331. </EntitySetMapping>
  1332. <EntitySetMapping Name="ActionEduActeurRoles">
  1333. <EntityTypeMapping TypeName="CD67.FicheCollege.ActionEduActeurRole">
  1334. <MappingFragment StoreEntitySet="ActionEduActeurRoles">
  1335. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1336. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  1337. <ScalarProperty Name="Id" ColumnName="Id" />
  1338. </MappingFragment>
  1339. </EntityTypeMapping>
  1340. </EntitySetMapping>
  1341. <EntitySetMapping Name="RestaurationTypes">
  1342. <EntityTypeMapping TypeName="CD67.FicheCollege.RestaurationType">
  1343. <MappingFragment StoreEntitySet="RestaurationTypes">
  1344. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1345. <ScalarProperty Name="Valid" ColumnName="Valid" />
  1346. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  1347. <ScalarProperty Name="Id" ColumnName="Id" />
  1348. </MappingFragment>
  1349. </EntityTypeMapping>
  1350. </EntitySetMapping>
  1351. <EntitySetMapping Name="RestaurationParametres">
  1352. <EntityTypeMapping TypeName="CD67.FicheCollege.RestaurationParametre">
  1353. <MappingFragment StoreEntitySet="RestaurationParametres">
  1354. <ScalarProperty Name="Prix_MiniAutres" ColumnName="Prix_MiniAutres" />
  1355. <ScalarProperty Name="Prix_AgentC" ColumnName="Prix_AgentC" />
  1356. <ScalarProperty Name="Prix_ATC" ColumnName="Prix_ATC" />
  1357. <ScalarProperty Name="Prix_Mini" ColumnName="Prix_Mini" />
  1358. <ScalarProperty Name="Campagne" ColumnName="Campagne" />
  1359. <ScalarProperty Name="Annee_Id" ColumnName="Annee_Id" />
  1360. <ScalarProperty Name="Id" ColumnName="Id" />
  1361. </MappingFragment>
  1362. </EntityTypeMapping>
  1363. </EntitySetMapping>
  1364. <EntitySetMapping Name="RestaurationTypesRepas">
  1365. <EntityTypeMapping TypeName="CD67.FicheCollege.RestaurationTypesRepa">
  1366. <MappingFragment StoreEntitySet="RestaurationTypesRepas">
  1367. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  1368. <ScalarProperty Name="Valid" ColumnName="Valid" />
  1369. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  1370. <ScalarProperty Name="Id" ColumnName="Id" />
  1371. </MappingFragment>
  1372. </EntityTypeMapping>
  1373. </EntitySetMapping>
  1374. <AssociationSetMapping Name="RestaurationParametresRepas1" TypeName="CD67.FicheCollege.RestaurationParametresRepas1" StoreEntitySet="RestaurationParametresRepas">
  1375. <EndProperty Name="RestaurationTypesRepa">
  1376. <ScalarProperty Name="Id" ColumnName="RestaurationTypesRepas_Id" />
  1377. </EndProperty>
  1378. <EndProperty Name="RestaurationParametre">
  1379. <ScalarProperty Name="Id" ColumnName="RestaurationParametres_Id" />
  1380. </EndProperty>
  1381. </AssociationSetMapping>
  1382. <EntitySetMapping Name="RestaurationFormulaires">
  1383. <EntityTypeMapping TypeName="CD67.FicheCollege.RestaurationFormulaire">
  1384. <MappingFragment StoreEntitySet="RestaurationFormulaires">
  1385. <ScalarProperty Name="Ind_Signature" ColumnName="Ind_Signature" />
  1386. <ScalarProperty Name="Date_AvisCA" ColumnName="Date_AvisCA" />
  1387. <ScalarProperty Name="Montant_Impayes" ColumnName="Montant_Impayes" />
  1388. <ScalarProperty Name="NbEleves_Impayes" ColumnName="NbEleves_Impayes" />
  1389. <ScalarProperty Name="Montant_FondSocial" ColumnName="Montant_FondSocial" />
  1390. <ScalarProperty Name="NbEleves_FondSocial" ColumnName="NbEleves_FondSocial" />
  1391. <ScalarProperty Name="Prix_EcolePeri" ColumnName="Prix_EcolePeri" />
  1392. <ScalarProperty Name="Prix_Commensaux" ColumnName="Prix_Commensaux" />
  1393. <ScalarProperty Name="Prix_AgentC" ColumnName="Prix_AgentC" />
  1394. <ScalarProperty Name="Prix_ATC" ColumnName="Prix_ATC" />
  1395. <ScalarProperty Name="Tarif_Pension" ColumnName="Tarif_Pension" />
  1396. <ScalarProperty Name="Prix_Ticket" ColumnName="Prix_Ticket" />
  1397. <ScalarProperty Name="NbJours_Forfait1j" ColumnName="NbJours_Forfait1j" />
  1398. <ScalarProperty Name="Prix_Forfait1j" ColumnName="Prix_Forfait1j" />
  1399. <ScalarProperty Name="NbJours_Forfait2j" ColumnName="NbJours_Forfait2j" />
  1400. <ScalarProperty Name="Prix_Forfait2j" ColumnName="Prix_Forfait2j" />
  1401. <ScalarProperty Name="NbJours_Forfait3j" ColumnName="NbJours_Forfait3j" />
  1402. <ScalarProperty Name="Prix_Forfait3j" ColumnName="Prix_Forfait3j" />
  1403. <ScalarProperty Name="NbJours_Forfait4j" ColumnName="NbJours_Forfait4j" />
  1404. <ScalarProperty Name="Prix_Forfait4j" ColumnName="Prix_Forfait4j" />
  1405. <ScalarProperty Name="NbJours_Forfait5j" ColumnName="NbJours_Forfait5j" />
  1406. <ScalarProperty Name="Prix_Forfait5j" ColumnName="Prix_Forfait5j" />
  1407. <ScalarProperty Name="NbDP_AgentC" ColumnName="NbDP_AgentC" />
  1408. <ScalarProperty Name="NbDP_ATC" ColumnName="NbDP_ATC" />
  1409. <ScalarProperty Name="NbDP_Commensaux" ColumnName="NbDP_Commensaux" />
  1410. <ScalarProperty Name="NbDP_MatPrimPeri" ColumnName="NbDP_MatPrimPeri" />
  1411. <ScalarProperty Name="NbDP_Lycee" ColumnName="NbDP_Lycee" />
  1412. <ScalarProperty Name="NbDP_College" ColumnName="NbDP_College" />
  1413. <ScalarProperty Name="Statut" ColumnName="Statut" />
  1414. <ScalarProperty Name="College_Id" ColumnName="College_Id" />
  1415. <ScalarProperty Name="Id" ColumnName="Id" />
  1416. </MappingFragment>
  1417. </EntityTypeMapping>
  1418. </EntitySetMapping>
  1419. <EntitySetMapping Name="RestaurationFormulairesRepas">
  1420. <EntityTypeMapping TypeName="CD67.FicheCollege.RestaurationFormulairesRepa">
  1421. <MappingFragment StoreEntitySet="RestaurationFormulairesRepas">
  1422. <ScalarProperty Name="NomEtablissement" ColumnName="NomEtablissement" />
  1423. <ScalarProperty Name="NbJours" ColumnName="NbJours" />
  1424. <ScalarProperty Name="NbRepas" ColumnName="NbRepas" />
  1425. <ScalarProperty Name="RestaurationTypesRepas_Id" ColumnName="RestaurationTypesRepas_Id" />
  1426. <ScalarProperty Name="RestaurationFormulaires_Id" ColumnName="RestaurationFormulaires_Id" />
  1427. <ScalarProperty Name="Id" ColumnName="Id" />
  1428. </MappingFragment>
  1429. </EntityTypeMapping>
  1430. </EntitySetMapping>
  1431. <EntitySetMapping Name="Groupes">
  1432. <EntityTypeMapping TypeName="CD67.FicheCollege.Groupe">
  1433. <MappingFragment StoreEntitySet="Groupes">
  1434. <ScalarProperty Name="Description" ColumnName="Description" />
  1435. <ScalarProperty Name="Nom" ColumnName="Nom" />
  1436. <ScalarProperty Name="Id" ColumnName="Id" />
  1437. </MappingFragment>
  1438. </EntityTypeMapping>
  1439. </EntitySetMapping>
  1440. <EntitySetMapping Name="Utilisateurs">
  1441. <EntityTypeMapping TypeName="CD67.FicheCollege.Utilisateur">
  1442. <MappingFragment StoreEntitySet="Utilisateurs">
  1443. <ScalarProperty Name="GroupeId" ColumnName="GroupeId" />
  1444. <ScalarProperty Name="Sid" ColumnName="Sid" />
  1445. <ScalarProperty Name="Id" ColumnName="Id" />
  1446. </MappingFragment>
  1447. </EntityTypeMapping>
  1448. </EntitySetMapping>
  1449. </EntityContainerMapping>
  1450. </Mapping></edmx:Mappings>
  1451. </edmx:Runtime>
  1452. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  1453. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  1454. <Connection>
  1455. <DesignerInfoPropertySet>
  1456. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  1457. </DesignerInfoPropertySet>
  1458. </Connection>
  1459. <Options>
  1460. <DesignerInfoPropertySet>
  1461. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  1462. <DesignerProperty Name="EnablePluralization" Value="True" />
  1463. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  1464. <DesignerProperty Name="UseLegacyProvider" Value="False" />
  1465. <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
  1466. </DesignerInfoPropertySet>
  1467. </Options>
  1468. <!-- Diagram content (shape and connector positions) -->
  1469. <Diagrams></Diagrams>
  1470. </Designer>
  1471. </edmx:Edmx>