Инициализация проекта слоя хранения данных банка

This commit is contained in:
abazov73 2023-04-06 18:53:42 +04:00
parent 6605497946
commit 9180dfd229
4 changed files with 40 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View 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
{
}
}

View 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
{
}
}