лр3 коммит1
This commit is contained in:
parent
ef602fa32a
commit
b28240a986
@ -13,7 +13,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PrecastConcretePlantContrac
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PrecastConcretePlantListImplement", "..\PrecastConcretePlantListImplement\PrecastConcretePlantListImplement.csproj", "{9EFFE92D-1414-4FD9-B424-56A32797499A}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PrecastConcretePlantListImplement", "..\PrecastConcretePlantListImplement\PrecastConcretePlantListImplement.csproj", "{9EFFE92D-1414-4FD9-B424-56A32797499A}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrecastConcretePlantFileImplement", "..\PrecastConcreteFileImplement\PrecastConcretePlantFileImplement.csproj", "{921B695C-0124-4295-8E39-1CC60E0D1D56}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PrecastConcretePlantFileImplement", "..\PrecastConcreteFileImplement\PrecastConcretePlantFileImplement.csproj", "{921B695C-0124-4295-8E39-1CC60E0D1D56}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrecastConcretePlantDataBaseImplement", "..\PrecastConcretePlantDataBaseImplemet\PrecastConcretePlantDataBaseImplement.csproj", "{8E649C11-1085-49FC-BC7A-CACB558CB39A}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@ -45,6 +47,10 @@ Global
|
|||||||
{921B695C-0124-4295-8E39-1CC60E0D1D56}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{921B695C-0124-4295-8E39-1CC60E0D1D56}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{921B695C-0124-4295-8E39-1CC60E0D1D56}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{921B695C-0124-4295-8E39-1CC60E0D1D56}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{921B695C-0124-4295-8E39-1CC60E0D1D56}.Release|Any CPU.Build.0 = Release|Any CPU
|
{921B695C-0124-4295-8E39-1CC60E0D1D56}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{8E649C11-1085-49FC-BC7A-CACB558CB39A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{8E649C11-1085-49FC-BC7A-CACB558CB39A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{8E649C11-1085-49FC-BC7A-CACB558CB39A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{8E649C11-1085-49FC-BC7A-CACB558CB39A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
@ -9,6 +9,10 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.4">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2" />
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PrecastConcretePlantDataBaseImplement.Implements
|
||||||
|
{
|
||||||
|
internal class ComponentStorage
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PrecastConcretePlantDataBaseImplement.Implements
|
||||||
|
{
|
||||||
|
internal class OrderStorage
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PrecastConcretePlantDataBaseImplement.Implements
|
||||||
|
{
|
||||||
|
internal class ReinforcedStorage
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
12
PrecastConcretePlantDataBaseImplemet/Models/Component.cs
Normal file
12
PrecastConcretePlantDataBaseImplemet/Models/Component.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PrecastConcretePlantDataBaseImplement.Models
|
||||||
|
{
|
||||||
|
internal class Component
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
12
PrecastConcretePlantDataBaseImplemet/Models/Order.cs
Normal file
12
PrecastConcretePlantDataBaseImplemet/Models/Order.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PrecastConcretePlantDataBaseImplement.Models
|
||||||
|
{
|
||||||
|
internal class Order
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
12
PrecastConcretePlantDataBaseImplemet/Models/Reinforced.cs
Normal file
12
PrecastConcretePlantDataBaseImplemet/Models/Reinforced.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PrecastConcretePlantDataBaseImplement.Models
|
||||||
|
{
|
||||||
|
internal class Reinforced
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.4" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.4">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.4" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
x
Reference in New Issue
Block a user