ну опяяяять работу работаем
This commit is contained in:
parent
a2bcf9e35d
commit
40356414cd
@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.9.34714.143
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankDatabaseImplement", "BankDatabaseImplement\BankDatabaseImplement.csproj", "{FB75A206-998D-4794-9273-3C09C6F9B16D}"
|
||||
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}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@ -15,6 +17,10 @@ Global
|
||||
{FB75A206-998D-4794-9273-3C09C6F9B16D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FB75A206-998D-4794-9273-3C09C6F9B16D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB75A206-998D-4794-9273-3C09C6F9B16D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{C2783ED2-7460-43BE-BFBA-5BC2B49CB5A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{C2783ED2-7460-43BE-BFBA-5BC2B49CB5A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{C2783ED2-7460-43BE-BFBA-5BC2B49CB5A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{C2783ED2-7460-43BE-BFBA-5BC2B49CB5A8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
9
Bank/BankDataModels/BankDataModels.csproj
Normal file
9
Bank/BankDataModels/BankDataModels.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/BankDataModels/HelperInterfaces/Id.cs
Normal file
12
Bank/BankDataModels/HelperInterfaces/Id.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels.HelperInterfaces
|
||||
{
|
||||
internal class Id
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/IClientModel.cs
Normal file
12
Bank/BankDataModels/IClientModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class IClientModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/ICostModel.cs
Normal file
12
Bank/BankDataModels/ICostModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class ICostModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/IEmployeeModel.cs
Normal file
12
Bank/BankDataModels/IEmployeeModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class IEmployeeModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/IOperationModel.cs
Normal file
12
Bank/BankDataModels/IOperationModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class IOperationModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/IPaymentModel.cs
Normal file
12
Bank/BankDataModels/IPaymentModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class IPaymentModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/IPurchaseModel.cs
Normal file
12
Bank/BankDataModels/IPurchaseModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class IPurchaseModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/ProxyModels/CostByPurchaseModel.cs
Normal file
12
Bank/BankDataModels/ProxyModels/CostByPurchaseModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels.ProxyModels
|
||||
{
|
||||
internal class CostByPurchaseModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankDataModels/ProxyModels/OperationByPurchaseModel.cs
Normal file
12
Bank/BankDataModels/ProxyModels/OperationByPurchaseModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels.ProxyModels
|
||||
{
|
||||
internal class OperationByPurchaseModel
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user