12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="utf-8"?>
- <Schema Namespace="gr682_ggi3Model" 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">
- <EntityType Name="Addressee">
- <Key>
- <PropertyRef Name="ID_Addressee" />
- </Key>
- <Property Name="ID_Addressee" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Surname" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Name" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="MiddleName" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="PhotoNumber" Type="String" MaxLength="10" FixedLength="true" Unicode="false" Nullable="false" />
- <Property Name="City" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- </EntityType>
- <EntityType Name="Car">
- <Key>
- <PropertyRef Name="ID_Car" />
- </Key>
- <Property Name="ID_Car" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="MachineBrand" Type="String" MaxLength="15" FixedLength="false" Unicode="true" />
- <Property Name="MachineType" Type="String" MaxLength="15" FixedLength="false" Unicode="true" />
- </EntityType>
- <EntityType Name="Driver">
- <Key>
- <PropertyRef Name="ID_Driver" />
- </Key>
- <Property Name="ID_Driver" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Surname" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Name" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="MiddleName" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="ID_Car" Type="Int32" />
- <Property Name="BrigadeNumber" Type="Int32" />
- </EntityType>
- <EntityType Name="Operator">
- <Key>
- <PropertyRef Name="ID_Operator" />
- </Key>
- <Property Name="ID_Operator" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Login" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Password" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Surname" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Name" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="MiddleName" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- </EntityType>
- <EntityType Name="Order">
- <Key>
- <PropertyRef Name="ID_Order" />
- </Key>
- <Property Name="ID_Order" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="OrderNumber" Type="Int32" Nullable="false" />
- <Property Name="ID_Driver" Type="Int32" Nullable="false" />
- <Property Name="ID_Sender" Type="Int32" Nullable="false" />
- <Property Name="SenderCuty" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="DepartureDate" Type="DateTime" Nullable="false" Precision="0" />
- <Property Name="ID_Addressee" Type="Int32" Nullable="false" />
- <Property Name="AddresseeCity" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="DateOfAddressee" Type="DateTime" Nullable="false" Precision="0" />
- </EntityType>
- <EntityType Name="Route">
- <Key>
- <PropertyRef Name="ID_Route" />
- </Key>
- <Property Name="ID_Route" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="OrderNumber" Type="Int32" Nullable="false" />
- <Property Name="SenderCity" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="AddresseeCity" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="ShordRoute" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
- </EntityType>
- <EntityType Name="Sender">
- <Key>
- <PropertyRef Name="ID_Sender" />
- </Key>
- <Property Name="ID_Sender" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Surname" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Name" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="MiddleName" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="PhoneNumber" Type="String" MaxLength="10" FixedLength="true" Unicode="false" Nullable="false" />
- <Property Name="City" Type="String" MaxLength="15" FixedLength="false" Unicode="true" Nullable="false" />
- </EntityType>
- <EntityContainer Name="gr682_ggi3Entities1" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="Addressee" EntityType="Self.Addressee" />
- <EntitySet Name="Car" EntityType="Self.Car" />
- <EntitySet Name="Driver" EntityType="Self.Driver" />
- <EntitySet Name="Operator" EntityType="Self.Operator" />
- <EntitySet Name="Order" EntityType="Self.Order" />
- <EntitySet Name="Route" EntityType="Self.Route" />
- <EntitySet Name="Sender" EntityType="Self.Sender" />
- </EntityContainer>
- </Schema>
|