ой, а че как много всего то....
This commit is contained in:
parent
7cff7ec9bc
commit
a9369fb1cc
@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BankDatabaseImplement", "Ba
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "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}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@ -21,6 +23,10 @@ Global
|
||||
{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
|
||||
{97622076-5579-461A-876B-86F487B6BA39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{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
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
9
Bank/BankContracts/BankContracts.csproj
Normal file
9
Bank/BankContracts/BankContracts.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/BankContracts/BindingModels/ClientBindingModel.cs
Normal file
12
Bank/BankContracts/BindingModels/ClientBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BindingModels
|
||||
{
|
||||
internal class ClientBindingModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BindingModels/CostBindingModel.cs
Normal file
12
Bank/BankContracts/BindingModels/CostBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BindingModels
|
||||
{
|
||||
internal class CostBindingModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BindingModels/EmployeeBindingModel.cs
Normal file
12
Bank/BankContracts/BindingModels/EmployeeBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BindingModels
|
||||
{
|
||||
internal class EmployeeBindingModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BindingModels/OperationBindingModel.cs
Normal file
12
Bank/BankContracts/BindingModels/OperationBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BindingModels
|
||||
{
|
||||
internal class OperationBindingModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BindingModels/PaymentBindingModel.cs
Normal file
12
Bank/BankContracts/BindingModels/PaymentBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BindingModels
|
||||
{
|
||||
internal class PaymentBindingModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BindingModels/PurchaseBindingModel.cs
Normal file
12
Bank/BankContracts/BindingModels/PurchaseBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BindingModels
|
||||
{
|
||||
internal class PurchaseBindingModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BusinessLogicContracts/IClientLogic.cs
Normal file
12
Bank/BankContracts/BusinessLogicContracts/IClientLogic.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BusinessLogicContracts
|
||||
{
|
||||
internal class IClientLogic
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BusinessLogicContracts/ICostLogic.cs
Normal file
12
Bank/BankContracts/BusinessLogicContracts/ICostLogic.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BusinessLogicContracts
|
||||
{
|
||||
internal class ICostLogic
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BusinessLogicContracts/IEmployeeLogic.cs
Normal file
12
Bank/BankContracts/BusinessLogicContracts/IEmployeeLogic.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BusinessLogicContracts
|
||||
{
|
||||
internal class IEmployeeLogic
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BusinessLogicContracts/IOperationLogic.cs
Normal file
12
Bank/BankContracts/BusinessLogicContracts/IOperationLogic.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BusinessLogicContracts
|
||||
{
|
||||
internal class IOperationLogic
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BusinessLogicContracts/IPaymentLogic.cs
Normal file
12
Bank/BankContracts/BusinessLogicContracts/IPaymentLogic.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BusinessLogicContracts
|
||||
{
|
||||
internal class IPaymentLogic
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/BusinessLogicContracts/IPurchaseLogic.cs
Normal file
12
Bank/BankContracts/BusinessLogicContracts/IPurchaseLogic.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.BusinessLogicContracts
|
||||
{
|
||||
internal class IPurchaseLogic
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/SearchModels/ClientSearchModel.cs
Normal file
12
Bank/BankContracts/SearchModels/ClientSearchModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.SearchModels
|
||||
{
|
||||
internal class ClientSearchModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/SearchModels/CostSearchModel.cs
Normal file
12
Bank/BankContracts/SearchModels/CostSearchModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.SearchModels
|
||||
{
|
||||
internal class CostSearchModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/SearchModels/EmployeeSearchModel.cs
Normal file
12
Bank/BankContracts/SearchModels/EmployeeSearchModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.SearchModels
|
||||
{
|
||||
internal class EmployeeSearchModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/SearchModels/OperationSearchModel.cs
Normal file
12
Bank/BankContracts/SearchModels/OperationSearchModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.SearchModels
|
||||
{
|
||||
internal class OperationSearchModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/SearchModels/PaymentSearchModel.cs
Normal file
12
Bank/BankContracts/SearchModels/PaymentSearchModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.SearchModels
|
||||
{
|
||||
internal class PaymentSearchModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/SearchModels/PurchaseSearchModel.cs
Normal file
12
Bank/BankContracts/SearchModels/PurchaseSearchModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.SearchModels
|
||||
{
|
||||
internal class PurchaseSearchModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/StoragesContracts/IClientStorage.cs
Normal file
12
Bank/BankContracts/StoragesContracts/IClientStorage.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.StoragesContracts
|
||||
{
|
||||
internal class IClientStorage
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/StoragesContracts/ICostStorage.cs
Normal file
12
Bank/BankContracts/StoragesContracts/ICostStorage.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.StoragesContracts
|
||||
{
|
||||
internal class ICostStorage
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/StoragesContracts/IEmployeeStorage.cs
Normal file
12
Bank/BankContracts/StoragesContracts/IEmployeeStorage.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.StoragesContracts
|
||||
{
|
||||
internal class IEmployeeStorage
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/StoragesContracts/IOperationStorage.cs
Normal file
12
Bank/BankContracts/StoragesContracts/IOperationStorage.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.StoragesContracts
|
||||
{
|
||||
internal class IOperationStorage
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/StoragesContracts/IPaymentStorage.cs
Normal file
12
Bank/BankContracts/StoragesContracts/IPaymentStorage.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.StoragesContracts
|
||||
{
|
||||
internal class IPaymentStorage
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/StoragesContracts/IPurchaseStorage.cs
Normal file
12
Bank/BankContracts/StoragesContracts/IPurchaseStorage.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.StoragesContracts
|
||||
{
|
||||
internal class IPurchaseStorage
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/ViewModels/ClientViewModel.cs
Normal file
12
Bank/BankContracts/ViewModels/ClientViewModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.ViewModels
|
||||
{
|
||||
internal class ClientViewModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/ViewModels/CostViewModel.cs
Normal file
12
Bank/BankContracts/ViewModels/CostViewModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.ViewModels
|
||||
{
|
||||
internal class CostViewModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/ViewModels/EmployeeViewModel.cs
Normal file
12
Bank/BankContracts/ViewModels/EmployeeViewModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.ViewModels
|
||||
{
|
||||
internal class EmployeeViewModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/ViewModels/OperationViewModel.cs
Normal file
12
Bank/BankContracts/ViewModels/OperationViewModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.ViewModels
|
||||
{
|
||||
internal class OperationViewModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/ViewModels/PaymentViewModel.cs
Normal file
12
Bank/BankContracts/ViewModels/PaymentViewModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.ViewModels
|
||||
{
|
||||
internal class PaymentViewModel
|
||||
{
|
||||
}
|
||||
}
|
12
Bank/BankContracts/ViewModels/PurchaseViewModel.cs
Normal file
12
Bank/BankContracts/ViewModels/PurchaseViewModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankContracts.ViewModels
|
||||
{
|
||||
internal class PurchaseViewModel
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user