добавление бизнес-логики и переименования
This commit is contained in:
parent
cc1edf7a7d
commit
e4dd335a12
@ -9,7 +9,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HospitalDataModels", "Hospi
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HospitalContracts", "HospitalContracts\HospitalContracts.csproj", "{78516D88-C507-42D8-B534-89BBB1D8E136}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HospitalDataBaseImplement", "HospitalDataBaseImplement\HospitalDataBaseImplement.csproj", "{871188EA-4C3F-4CC7-800D-52D838910ABA}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HospitalBusinessLogic", "HospitalBusinessLogic\HospitalBusinessLogic.csproj", "{FA80C91B-0CE2-48A1-9B9A-EB443F3ABC44}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HospitalDatabaseImplement", "HospitalDatabaseImplement\HospitalDatabaseImplement.csproj", "{651AD7CE-7821-4BDF-9FA4-4F61DC5CF5C4}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@ -29,10 +31,14 @@ Global
|
||||
{78516D88-C507-42D8-B534-89BBB1D8E136}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{78516D88-C507-42D8-B534-89BBB1D8E136}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{78516D88-C507-42D8-B534-89BBB1D8E136}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{871188EA-4C3F-4CC7-800D-52D838910ABA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{871188EA-4C3F-4CC7-800D-52D838910ABA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{871188EA-4C3F-4CC7-800D-52D838910ABA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{871188EA-4C3F-4CC7-800D-52D838910ABA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FA80C91B-0CE2-48A1-9B9A-EB443F3ABC44}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FA80C91B-0CE2-48A1-9B9A-EB443F3ABC44}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FA80C91B-0CE2-48A1-9B9A-EB443F3ABC44}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FA80C91B-0CE2-48A1-9B9A-EB443F3ABC44}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{651AD7CE-7821-4BDF-9FA4-4F61DC5CF5C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{651AD7CE-7821-4BDF-9FA4-4F61DC5CF5C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{651AD7CE-7821-4BDF-9FA4-4F61DC5CF5C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{651AD7CE-7821-4BDF-9FA4-4F61DC5CF5C4}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
7
Hospital/HospitalBusinessLogic/Class1.cs
Normal file
7
Hospital/HospitalBusinessLogic/Class1.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace HospitalBusinessLogic
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -1,11 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
</Project>
|
||||
|
@ -1,17 +0,0 @@
|
||||
namespace HospitalBusinessLogic
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
// To customize application configuration such as set high DPI settings or default font,
|
||||
// see https://aka.ms/applicationconfiguration.
|
||||
ApplicationConfiguration.Initialize();
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,16 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Implements\" />
|
||||
<Folder Include="Models\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
</Project>
|
||||
|
@ -1,17 +0,0 @@
|
||||
namespace HospitalDataBaseImplement
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
// To customize application configuration such as set high DPI settings or default font,
|
||||
// see https://aka.ms/applicationconfiguration.
|
||||
ApplicationConfiguration.Initialize();
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
7
Hospital/HospitalDatabaseImplement/Class1.cs
Normal file
7
Hospital/HospitalDatabaseImplement/Class1.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace HospitalDatabaseImplement
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user