diff --git a/Bank/Bank.sln b/Bank/Bank.sln index 9ddef8a..012d9de 100644 --- a/Bank/Bank.sln +++ b/Bank/Bank.sln @@ -7,7 +7,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankDataModels", "BankDataM EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankContracts", "BankContracts\BankContracts.csproj", "{A3FC80BA-ABC1-42EF-8E1D-2C8B04F18A86}" 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 Global 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}.Release|Any CPU.ActiveCfg = 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 GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Bank/BankDatabaseImplement/BankDatabaseImplement.csproj b/Bank/BankDatabaseImplement/BankDatabaseImplement.csproj new file mode 100644 index 0000000..27ac386 --- /dev/null +++ b/Bank/BankDatabaseImplement/BankDatabaseImplement.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/Bank/BankDatabaseImplement/Implements/DealStorage.cs b/Bank/BankDatabaseImplement/Implements/DealStorage.cs new file mode 100644 index 0000000..b775147 --- /dev/null +++ b/Bank/BankDatabaseImplement/Implements/DealStorage.cs @@ -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 + { + } +} diff --git a/Bank/BankDatabaseImplement/Models/Deal.cs b/Bank/BankDatabaseImplement/Models/Deal.cs new file mode 100644 index 0000000..6e3a2b6 --- /dev/null +++ b/Bank/BankDatabaseImplement/Models/Deal.cs @@ -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 + { + } +}