Инициализация проекта слоя хранения данных банка
This commit is contained in:
parent
6605497946
commit
9180dfd229
@ -7,7 +7,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankDataModels", "BankDataM
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankContracts", "BankContracts\BankContracts.csproj", "{A3FC80BA-ABC1-42EF-8E1D-2C8B04F18A86}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankContracts", "BankContracts\BankContracts.csproj", "{A3FC80BA-ABC1-42EF-8E1D-2C8B04F18A86}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankBusinessLogic", "BankBusinessLogic\BankBusinessLogic.csproj", "{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankBusinessLogic", "BankBusinessLogic\BankBusinessLogic.csproj", "{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankDatabaseImplement", "BankDatabaseImplement\BankDatabaseImplement.csproj", "{018166FE-40A6-43C8-98C4-5F9AE11FFFF2}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@ -27,6 +29,10 @@ Global
|
|||||||
{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}.Release|Any CPU.Build.0 = Release|Any CPU
|
{4C612251-E137-4C3A-B75B-F2BB35FEF9DF}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{018166FE-40A6-43C8-98C4-5F9AE11FFFF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{018166FE-40A6-43C8-98C4-5F9AE11FFFF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{018166FE-40A6-43C8-98C4-5F9AE11FFFF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{018166FE-40A6-43C8-98C4-5F9AE11FFFF2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
9
Bank/BankDatabaseImplement/BankDatabaseImplement.csproj
Normal file
9
Bank/BankDatabaseImplement/BankDatabaseImplement.csproj
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
12
Bank/BankDatabaseImplement/Implements/DealStorage.cs
Normal file
12
Bank/BankDatabaseImplement/Implements/DealStorage.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankDatabaseImplement.Implements
|
||||||
|
{
|
||||||
|
internal class DealStorage
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
12
Bank/BankDatabaseImplement/Models/Deal.cs
Normal file
12
Bank/BankDatabaseImplement/Models/Deal.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankDatabaseImplement.Models
|
||||||
|
{
|
||||||
|
internal class Deal
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user