создала тапки
This commit is contained in:
parent
46f8a36526
commit
e82c927ffe
@ -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
|
||||
|
9
Bank/BankBusinessLogics/BankBusinessLogics.csproj
Normal file
9
Bank/BankBusinessLogics/BankBusinessLogics.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/BankBusinessLogics/BusinessLogic/ClientLogic.cs
Normal file
12
Bank/BankBusinessLogics/BusinessLogic/ClientLogic.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankBusinessLogics/BusinessLogic/CostLogic.cs
Normal file
12
Bank/BankBusinessLogics/BusinessLogic/CostLogic.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankBusinessLogics/BusinessLogic/EmployeeLogic.cs
Normal file
12
Bank/BankBusinessLogics/BusinessLogic/EmployeeLogic.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankBusinessLogics/BusinessLogic/OperationLogic.cs
Normal file
12
Bank/BankBusinessLogics/BusinessLogic/OperationLogic.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankBusinessLogics/BusinessLogic/PaymentLogic.cs
Normal file
12
Bank/BankBusinessLogics/BusinessLogic/PaymentLogic.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankBusinessLogics/BusinessLogic/PurchaseLogic.cs
Normal file
12
Bank/BankBusinessLogics/BusinessLogic/PurchaseLogic.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankBusinessLogics/BusinessLogic/ReportLogic.cs
Normal file
12
Bank/BankBusinessLogics/BusinessLogic/ReportLogic.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user