Model1.csdl 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="gr606_sosanModel" Alias="Self" 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/2008/09/edm">
  3. <EntityType Name="Address">
  4. <Key>
  5. <PropertyRef Name="IdAddress" />
  6. </Key>
  7. <Property Name="IdAddress" Type="Int32" Nullable="false" />
  8. <Property Name="Street" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  9. <Property Name="Number" Type="Int32" Nullable="false" />
  10. <Property Name="HouseNumber" Type="Int32" Nullable="false" />
  11. <Property Name="Flat" Type="Int32" Nullable="false" />
  12. <Property Name="IdEmployee" Type="Int32" />
  13. <NavigationProperty Name="Employees" Relationship="Self.FK_Address_Employees" FromRole="Address" ToRole="Employees" />
  14. </EntityType>
  15. <EntityType Name="CardAmount">
  16. <Key>
  17. <PropertyRef Name="IdCard" />
  18. </Key>
  19. <Property Name="IdCard" Type="Int32" Nullable="false" />
  20. <Property Name="Sum" Type="Decimal" Precision="19" Scale="4" />
  21. <Property Name="PaymentName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  22. <Property Name="IdPay" Type="Int32" />
  23. <NavigationProperty Name="Payment" Relationship="Self.FK_CardAmount_Payment" FromRole="CardAmount" ToRole="Payment" />
  24. </EntityType>
  25. <EntityType Name="Cash">
  26. <Key>
  27. <PropertyRef Name="IdCash" />
  28. </Key>
  29. <Property Name="IdCash" Type="Int32" Nullable="false" />
  30. <Property Name="Sum" Type="Decimal" Precision="19" Scale="4" />
  31. <Property Name="PaymentName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  32. <Property Name="IdPay" Type="Int32" />
  33. <NavigationProperty Name="Payment" Relationship="Self.FK_Cash_Payment" FromRole="Cash" ToRole="Payment" />
  34. </EntityType>
  35. <EntityType Name="CashRegister">
  36. <Key>
  37. <PropertyRef Name="IdCashRegistre" />
  38. </Key>
  39. <Property Name="IdCashRegistre" Type="Int32" Nullable="false" />
  40. <Property Name="IdEmployee" Type="Int32" />
  41. <Property Name="IdProduct" Type="Int32" />
  42. <Property Name="IdSurrender" Type="Int32" />
  43. <Property Name="IdDate" Type="Int32" />
  44. <Property Name="IdPay" Type="Int32" />
  45. <NavigationProperty Name="Dates" Relationship="Self.FK_CashRegister_Dates" FromRole="CashRegister" ToRole="Dates" />
  46. <NavigationProperty Name="Employees" Relationship="Self.FK_CashRegister_Employees" FromRole="CashRegister" ToRole="Employees" />
  47. <NavigationProperty Name="Payment" Relationship="Self.FK_CashRegister_Payment" FromRole="CashRegister" ToRole="Payment" />
  48. <NavigationProperty Name="Product" Relationship="Self.FK_CashRegister_Product" FromRole="CashRegister" ToRole="Product" />
  49. <NavigationProperty Name="SurrenderOfMoney" Relationship="Self.FK_CashRegister_SurrenderOfMoney" FromRole="CashRegister" ToRole="SurrenderOfMoney" />
  50. </EntityType>
  51. <EntityType Name="Dates">
  52. <Key>
  53. <PropertyRef Name="IdDate" />
  54. </Key>
  55. <Property Name="IdDate" Type="Int32" Nullable="false" />
  56. <Property Name="Date" Type="DateTime" Precision="0" />
  57. <NavigationProperty Name="CashRegister" Relationship="Self.FK_CashRegister_Dates" FromRole="Dates" ToRole="CashRegister" />
  58. </EntityType>
  59. <EntityType Name="Employees">
  60. <Key>
  61. <PropertyRef Name="IdEmployee" />
  62. </Key>
  63. <Property Name="IdEmployee" Type="Int32" Nullable="false" />
  64. <Property Name="Surname" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  65. <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  66. <Property Name="Patronymic" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  67. <Property Name="TelephoneNumber" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
  68. <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  69. <Property Name="Login" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
  70. <Property Name="Password" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
  71. <NavigationProperty Name="Address" Relationship="Self.FK_Address_Employees" FromRole="Employees" ToRole="Address" />
  72. <NavigationProperty Name="CashRegister" Relationship="Self.FK_CashRegister_Employees" FromRole="Employees" ToRole="CashRegister" />
  73. <NavigationProperty Name="PasportDetails" Relationship="Self.FK_PasportDetails_Employees" FromRole="Employees" ToRole="PasportDetails" />
  74. <NavigationProperty Name="Revenue" Relationship="Self.FK_Revenue_Employees" FromRole="Employees" ToRole="Revenue" />
  75. <NavigationProperty Name="WorkingShift" Relationship="Self.FK_WorkingShift_Employees" FromRole="Employees" ToRole="WorkingShift" />
  76. </EntityType>
  77. <EntityType Name="PasportDetails">
  78. <Key>
  79. <PropertyRef Name="IdDetail" />
  80. </Key>
  81. <Property Name="IdDetail" Type="Int32" Nullable="false" />
  82. <Property Name="Number" Type="Int32" Nullable="false" />
  83. <Property Name="Series" Type="Int32" Nullable="false" />
  84. <Property Name="IssuedBy" Type="String" MaxLength="150" FixedLength="false" Unicode="true" Nullable="false" />
  85. <Property Name="IdEmployee" Type="Int32" />
  86. <NavigationProperty Name="Employees" Relationship="Self.FK_PasportDetails_Employees" FromRole="PasportDetails" ToRole="Employees" />
  87. </EntityType>
  88. <EntityType Name="Payment">
  89. <Key>
  90. <PropertyRef Name="IdPay" />
  91. </Key>
  92. <Property Name="IdPay" Type="Int32" Nullable="false" />
  93. <Property Name="HistoryAboutPayment" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  94. <NavigationProperty Name="CardAmount" Relationship="Self.FK_CardAmount_Payment" FromRole="Payment" ToRole="CardAmount" />
  95. <NavigationProperty Name="Cash" Relationship="Self.FK_Cash_Payment" FromRole="Payment" ToRole="Cash" />
  96. <NavigationProperty Name="CashRegister" Relationship="Self.FK_CashRegister_Payment" FromRole="Payment" ToRole="CashRegister" />
  97. </EntityType>
  98. <EntityType Name="Product">
  99. <Key>
  100. <PropertyRef Name="IdProduct" />
  101. </Key>
  102. <Property Name="IdProduct" Type="Int32" Nullable="false" />
  103. <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  104. <Property Name="Manufacture" Type="String" MaxLength="255" FixedLength="false" Unicode="true" Nullable="false" />
  105. <Property Name="ProductGroup" Type="String" MaxLength="255" FixedLength="false" Unicode="true" Nullable="false" />
  106. <Property Name="Cost" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
  107. <Property Name="TypeOfProduct" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  108. <Property Name="Bardcode" Type="Int32" Nullable="false" />
  109. <Property Name="Margin" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
  110. <Property Name="Quantity" Type="Int32" Nullable="false" />
  111. <Property Name="Discount" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
  112. <Property Name="Unit" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  113. <Property Name="VAT" Type="Decimal" Precision="19" Scale="4" />
  114. <NavigationProperty Name="CashRegister" Relationship="Self.FK_CashRegister_Product" FromRole="Product" ToRole="CashRegister" />
  115. <NavigationProperty Name="SupplyProduct" Relationship="Self.FK_SupplyProduct_Product" FromRole="Product" ToRole="SupplyProduct" />
  116. </EntityType>
  117. <EntityType Name="Revenue">
  118. <Key>
  119. <PropertyRef Name="IdRevenue" />
  120. </Key>
  121. <Property Name="IdRevenue" Type="Int32" Nullable="false" />
  122. <Property Name="SumRevenue" Type="Decimal" Precision="19" Scale="4" />
  123. <Property Name="IdEmployee" Type="Int32" />
  124. <NavigationProperty Name="Employees" Relationship="Self.FK_Revenue_Employees" FromRole="Revenue" ToRole="Employees" />
  125. </EntityType>
  126. <EntityType Name="SuppliersProduct">
  127. <Key>
  128. <PropertyRef Name="IdSupplier" />
  129. </Key>
  130. <Property Name="IdSupplier" Type="Int32" Nullable="false" />
  131. <Property Name="CompanyName" Type="String" MaxLength="255" FixedLength="false" Unicode="true" Nullable="false" />
  132. <Property Name="IdSupply" Type="Int32" Nullable="false" />
  133. <NavigationProperty Name="SupplyProduct" Relationship="Self.FK_SuppliersProduct_SupplyProduct" FromRole="SuppliersProduct" ToRole="SupplyProduct" />
  134. </EntityType>
  135. <EntityType Name="SupplyProduct">
  136. <Key>
  137. <PropertyRef Name="IdSupply" />
  138. </Key>
  139. <Property Name="IdSupply" Type="Int32" Nullable="false" />
  140. <Property Name="QuantityDeliveredProduct" Type="Int32" Nullable="false" />
  141. <Property Name="CostDeliveredProduct" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
  142. <Property Name="IdProduct" Type="Int32" Nullable="false" />
  143. <NavigationProperty Name="Product" Relationship="Self.FK_SupplyProduct_Product" FromRole="SupplyProduct" ToRole="Product" />
  144. <NavigationProperty Name="SuppliersProduct" Relationship="Self.FK_SuppliersProduct_SupplyProduct" FromRole="SupplyProduct" ToRole="SuppliersProduct" />
  145. </EntityType>
  146. <EntityType Name="SurrenderOfMoney">
  147. <Key>
  148. <PropertyRef Name="IdSurrender" />
  149. </Key>
  150. <Property Name="IdSurrender" Type="Int32" Nullable="false" />
  151. <Property Name="Sum" Type="Decimal" Precision="19" Scale="4" />
  152. <Property Name="NumberOfChecks" Type="Int32" />
  153. <NavigationProperty Name="CashRegister" Relationship="Self.FK_CashRegister_SurrenderOfMoney" FromRole="SurrenderOfMoney" ToRole="CashRegister" />
  154. </EntityType>
  155. <EntityType Name="WorkingShift">
  156. <Key>
  157. <PropertyRef Name="IdShift" />
  158. </Key>
  159. <Property Name="IdShift" Type="Int32" Nullable="false" />
  160. <Property Name="NameShift" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  161. <Property Name="IdEmployee" Type="Int32" />
  162. <NavigationProperty Name="Employees" Relationship="Self.FK_WorkingShift_Employees" FromRole="WorkingShift" ToRole="Employees" />
  163. </EntityType>
  164. <Association Name="FK_Address_Employees">
  165. <End Role="Employees" Type="Self.Employees" Multiplicity="0..1" />
  166. <End Role="Address" Type="Self.Address" Multiplicity="*" />
  167. <ReferentialConstraint>
  168. <Principal Role="Employees">
  169. <PropertyRef Name="IdEmployee" />
  170. </Principal>
  171. <Dependent Role="Address">
  172. <PropertyRef Name="IdEmployee" />
  173. </Dependent>
  174. </ReferentialConstraint>
  175. </Association>
  176. <Association Name="FK_CardAmount_Payment">
  177. <End Role="Payment" Type="Self.Payment" Multiplicity="0..1" />
  178. <End Role="CardAmount" Type="Self.CardAmount" Multiplicity="*" />
  179. <ReferentialConstraint>
  180. <Principal Role="Payment">
  181. <PropertyRef Name="IdPay" />
  182. </Principal>
  183. <Dependent Role="CardAmount">
  184. <PropertyRef Name="IdPay" />
  185. </Dependent>
  186. </ReferentialConstraint>
  187. </Association>
  188. <Association Name="FK_Cash_Payment">
  189. <End Role="Payment" Type="Self.Payment" Multiplicity="0..1" />
  190. <End Role="Cash" Type="Self.Cash" Multiplicity="*" />
  191. <ReferentialConstraint>
  192. <Principal Role="Payment">
  193. <PropertyRef Name="IdPay" />
  194. </Principal>
  195. <Dependent Role="Cash">
  196. <PropertyRef Name="IdPay" />
  197. </Dependent>
  198. </ReferentialConstraint>
  199. </Association>
  200. <Association Name="FK_CashRegister_Dates">
  201. <End Role="Dates" Type="Self.Dates" Multiplicity="0..1" />
  202. <End Role="CashRegister" Type="Self.CashRegister" Multiplicity="*" />
  203. <ReferentialConstraint>
  204. <Principal Role="Dates">
  205. <PropertyRef Name="IdDate" />
  206. </Principal>
  207. <Dependent Role="CashRegister">
  208. <PropertyRef Name="IdDate" />
  209. </Dependent>
  210. </ReferentialConstraint>
  211. </Association>
  212. <Association Name="FK_CashRegister_Employees">
  213. <End Role="Employees" Type="Self.Employees" Multiplicity="0..1" />
  214. <End Role="CashRegister" Type="Self.CashRegister" Multiplicity="*" />
  215. <ReferentialConstraint>
  216. <Principal Role="Employees">
  217. <PropertyRef Name="IdEmployee" />
  218. </Principal>
  219. <Dependent Role="CashRegister">
  220. <PropertyRef Name="IdEmployee" />
  221. </Dependent>
  222. </ReferentialConstraint>
  223. </Association>
  224. <Association Name="FK_CashRegister_Payment">
  225. <End Role="Payment" Type="Self.Payment" Multiplicity="0..1" />
  226. <End Role="CashRegister" Type="Self.CashRegister" Multiplicity="*" />
  227. <ReferentialConstraint>
  228. <Principal Role="Payment">
  229. <PropertyRef Name="IdPay" />
  230. </Principal>
  231. <Dependent Role="CashRegister">
  232. <PropertyRef Name="IdPay" />
  233. </Dependent>
  234. </ReferentialConstraint>
  235. </Association>
  236. <Association Name="FK_CashRegister_Product">
  237. <End Role="Product" Type="Self.Product" Multiplicity="0..1" />
  238. <End Role="CashRegister" Type="Self.CashRegister" Multiplicity="*" />
  239. <ReferentialConstraint>
  240. <Principal Role="Product">
  241. <PropertyRef Name="IdProduct" />
  242. </Principal>
  243. <Dependent Role="CashRegister">
  244. <PropertyRef Name="IdProduct" />
  245. </Dependent>
  246. </ReferentialConstraint>
  247. </Association>
  248. <Association Name="FK_CashRegister_SurrenderOfMoney">
  249. <End Role="SurrenderOfMoney" Type="Self.SurrenderOfMoney" Multiplicity="0..1" />
  250. <End Role="CashRegister" Type="Self.CashRegister" Multiplicity="*" />
  251. <ReferentialConstraint>
  252. <Principal Role="SurrenderOfMoney">
  253. <PropertyRef Name="IdSurrender" />
  254. </Principal>
  255. <Dependent Role="CashRegister">
  256. <PropertyRef Name="IdSurrender" />
  257. </Dependent>
  258. </ReferentialConstraint>
  259. </Association>
  260. <Association Name="FK_PasportDetails_Employees">
  261. <End Role="Employees" Type="Self.Employees" Multiplicity="0..1" />
  262. <End Role="PasportDetails" Type="Self.PasportDetails" Multiplicity="*" />
  263. <ReferentialConstraint>
  264. <Principal Role="Employees">
  265. <PropertyRef Name="IdEmployee" />
  266. </Principal>
  267. <Dependent Role="PasportDetails">
  268. <PropertyRef Name="IdEmployee" />
  269. </Dependent>
  270. </ReferentialConstraint>
  271. </Association>
  272. <Association Name="FK_Revenue_Employees">
  273. <End Role="Employees" Type="Self.Employees" Multiplicity="0..1" />
  274. <End Role="Revenue" Type="Self.Revenue" Multiplicity="*" />
  275. <ReferentialConstraint>
  276. <Principal Role="Employees">
  277. <PropertyRef Name="IdEmployee" />
  278. </Principal>
  279. <Dependent Role="Revenue">
  280. <PropertyRef Name="IdEmployee" />
  281. </Dependent>
  282. </ReferentialConstraint>
  283. </Association>
  284. <Association Name="FK_WorkingShift_Employees">
  285. <End Role="Employees" Type="Self.Employees" Multiplicity="0..1" />
  286. <End Role="WorkingShift" Type="Self.WorkingShift" Multiplicity="*" />
  287. <ReferentialConstraint>
  288. <Principal Role="Employees">
  289. <PropertyRef Name="IdEmployee" />
  290. </Principal>
  291. <Dependent Role="WorkingShift">
  292. <PropertyRef Name="IdEmployee" />
  293. </Dependent>
  294. </ReferentialConstraint>
  295. </Association>
  296. <Association Name="FK_SupplyProduct_Product">
  297. <End Role="Product" Type="Self.Product" Multiplicity="1" />
  298. <End Role="SupplyProduct" Type="Self.SupplyProduct" Multiplicity="*" />
  299. <ReferentialConstraint>
  300. <Principal Role="Product">
  301. <PropertyRef Name="IdProduct" />
  302. </Principal>
  303. <Dependent Role="SupplyProduct">
  304. <PropertyRef Name="IdProduct" />
  305. </Dependent>
  306. </ReferentialConstraint>
  307. </Association>
  308. <Association Name="FK_SuppliersProduct_SupplyProduct">
  309. <End Role="SupplyProduct" Type="Self.SupplyProduct" Multiplicity="1" />
  310. <End Role="SuppliersProduct" Type="Self.SuppliersProduct" Multiplicity="*" />
  311. <ReferentialConstraint>
  312. <Principal Role="SupplyProduct">
  313. <PropertyRef Name="IdSupply" />
  314. </Principal>
  315. <Dependent Role="SuppliersProduct">
  316. <PropertyRef Name="IdSupply" />
  317. </Dependent>
  318. </ReferentialConstraint>
  319. </Association>
  320. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  321. <EntitySet Name="Address" EntityType="Self.Address" />
  322. <EntitySet Name="CardAmount" EntityType="Self.CardAmount" />
  323. <EntitySet Name="Cash" EntityType="Self.Cash" />
  324. <EntitySet Name="CashRegister" EntityType="Self.CashRegister" />
  325. <EntitySet Name="Dates" EntityType="Self.Dates" />
  326. <EntitySet Name="Employees" EntityType="Self.Employees" />
  327. <EntitySet Name="PasportDetails" EntityType="Self.PasportDetails" />
  328. <EntitySet Name="Payment" EntityType="Self.Payment" />
  329. <EntitySet Name="Product" EntityType="Self.Product" />
  330. <EntitySet Name="Revenue" EntityType="Self.Revenue" />
  331. <EntitySet Name="SuppliersProduct" EntityType="Self.SuppliersProduct" />
  332. <EntitySet Name="SupplyProduct" EntityType="Self.SupplyProduct" />
  333. <EntitySet Name="SurrenderOfMoney" EntityType="Self.SurrenderOfMoney" />
  334. <EntitySet Name="WorkingShift" EntityType="Self.WorkingShift" />
  335. <AssociationSet Name="FK_Address_Employees" Association="Self.FK_Address_Employees">
  336. <End Role="Employees" EntitySet="Employees" />
  337. <End Role="Address" EntitySet="Address" />
  338. </AssociationSet>
  339. <AssociationSet Name="FK_CardAmount_Payment" Association="Self.FK_CardAmount_Payment">
  340. <End Role="Payment" EntitySet="Payment" />
  341. <End Role="CardAmount" EntitySet="CardAmount" />
  342. </AssociationSet>
  343. <AssociationSet Name="FK_Cash_Payment" Association="Self.FK_Cash_Payment">
  344. <End Role="Payment" EntitySet="Payment" />
  345. <End Role="Cash" EntitySet="Cash" />
  346. </AssociationSet>
  347. <AssociationSet Name="FK_CashRegister_Dates" Association="Self.FK_CashRegister_Dates">
  348. <End Role="Dates" EntitySet="Dates" />
  349. <End Role="CashRegister" EntitySet="CashRegister" />
  350. </AssociationSet>
  351. <AssociationSet Name="FK_CashRegister_Employees" Association="Self.FK_CashRegister_Employees">
  352. <End Role="Employees" EntitySet="Employees" />
  353. <End Role="CashRegister" EntitySet="CashRegister" />
  354. </AssociationSet>
  355. <AssociationSet Name="FK_CashRegister_Payment" Association="Self.FK_CashRegister_Payment">
  356. <End Role="Payment" EntitySet="Payment" />
  357. <End Role="CashRegister" EntitySet="CashRegister" />
  358. </AssociationSet>
  359. <AssociationSet Name="FK_CashRegister_Product" Association="Self.FK_CashRegister_Product">
  360. <End Role="Product" EntitySet="Product" />
  361. <End Role="CashRegister" EntitySet="CashRegister" />
  362. </AssociationSet>
  363. <AssociationSet Name="FK_CashRegister_SurrenderOfMoney" Association="Self.FK_CashRegister_SurrenderOfMoney">
  364. <End Role="SurrenderOfMoney" EntitySet="SurrenderOfMoney" />
  365. <End Role="CashRegister" EntitySet="CashRegister" />
  366. </AssociationSet>
  367. <AssociationSet Name="FK_PasportDetails_Employees" Association="Self.FK_PasportDetails_Employees">
  368. <End Role="Employees" EntitySet="Employees" />
  369. <End Role="PasportDetails" EntitySet="PasportDetails" />
  370. </AssociationSet>
  371. <AssociationSet Name="FK_Revenue_Employees" Association="Self.FK_Revenue_Employees">
  372. <End Role="Employees" EntitySet="Employees" />
  373. <End Role="Revenue" EntitySet="Revenue" />
  374. </AssociationSet>
  375. <AssociationSet Name="FK_WorkingShift_Employees" Association="Self.FK_WorkingShift_Employees">
  376. <End Role="Employees" EntitySet="Employees" />
  377. <End Role="WorkingShift" EntitySet="WorkingShift" />
  378. </AssociationSet>
  379. <AssociationSet Name="FK_SupplyProduct_Product" Association="Self.FK_SupplyProduct_Product">
  380. <End Role="Product" EntitySet="Product" />
  381. <End Role="SupplyProduct" EntitySet="SupplyProduct" />
  382. </AssociationSet>
  383. <AssociationSet Name="FK_SuppliersProduct_SupplyProduct" Association="Self.FK_SuppliersProduct_SupplyProduct">
  384. <End Role="SupplyProduct" EntitySet="SupplyProduct" />
  385. <End Role="SuppliersProduct" EntitySet="SuppliersProduct" />
  386. </AssociationSet>
  387. </EntityContainer>
  388. </Schema>