создала тапки

This commit is contained in:
trofimova.05 2024-04-28 20:55:25 +03:00
parent 46f8a36526
commit e82c927ffe
9 changed files with 101 additions and 2 deletions

View File

@ -5,9 +5,11 @@ VisualStudioVersion = 17.9.34714.143
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankDatabaseImplement", "BankDatabaseImplement\BankDatabaseImplement.csproj", "{FB75A206-998D-4794-9273-3C09C6F9B16D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankDataModels", "BankDataModels\BankDataModels.csproj", "{C2783ED2-7460-43BE-BFBA-5BC2B49CB5A8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankDataModels", "BankDataModels\BankDataModels.csproj", "{C2783ED2-7460-43BE-BFBA-5BC2B49CB5A8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankContracts", "BankContracts\BankContracts.csproj", "{97622076-5579-461A-876B-86F487B6BA39}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankContracts", "BankContracts\BankContracts.csproj", "{97622076-5579-461A-876B-86F487B6BA39}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankBusinessLogics", "BankBusinessLogics\BankBusinessLogics.csproj", "{CEDB9380-D27B-48AC-A7F2-16E3DCA9D51A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -27,6 +29,10 @@ Global
{97622076-5579-461A-876B-86F487B6BA39}.Debug|Any CPU.Build.0 = Debug|Any CPU
{97622076-5579-461A-876B-86F487B6BA39}.Release|Any CPU.ActiveCfg = Release|Any CPU
{97622076-5579-461A-876B-86F487B6BA39}.Release|Any CPU.Build.0 = Release|Any CPU
{CEDB9380-D27B-48AC-A7F2-16E3DCA9D51A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CEDB9380-D27B-48AC-A7F2-16E3DCA9D51A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CEDB9380-D27B-48AC-A7F2-16E3DCA9D51A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CEDB9380-D27B-48AC-A7F2-16E3DCA9D51A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
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 BankBusinessLogics.BusinessLogic
{
internal class ClientLogic
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankBusinessLogics.BusinessLogic
{
internal class CostLogic
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankBusinessLogics.BusinessLogic
{
internal class EmployeeLogic
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankBusinessLogics.BusinessLogic
{
internal class OperationLogic
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankBusinessLogics.BusinessLogic
{
internal class PaymentLogic
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankBusinessLogics.BusinessLogic
{
internal class PurchaseLogic
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankBusinessLogics.BusinessLogic
{
internal class ReportLogic
{
}
}