├── .gitignore ├── DBDiagram.png ├── Homepage.png ├── LICENSE ├── Login.png ├── README.md ├── Register.png └── src ├── BankManagementSystem.Data.Common ├── BankManagementSystem.Data.Common.csproj └── Repositories │ └── IRepository.cs ├── BankManagementSystem.sln ├── Common └── BankManagementSystem.Common │ ├── BankManagementSystem.Common.csproj │ ├── BindingModels │ ├── Asset │ │ ├── CreateAssetBindingModel.cs │ │ └── PurchaseAssetBindingModel.cs │ ├── Credit │ │ └── CreateCreditBindingModel.cs │ ├── CreditCard │ │ └── CreateCreditCardBindingModel.cs │ ├── Deposit │ │ └── CreateDepositBindingModel.cs │ └── Withdraw │ │ └── WithdrawBindingModel.cs │ ├── Constants │ ├── ActionConstants.cs │ ├── AttributeDisplayNameConstants.cs │ ├── ControllerConstants.cs │ ├── ModelLenghtConstants.cs │ ├── PageConstants.cs │ ├── RoleConstants.cs │ └── ViewNameConstants.cs │ ├── CustomAttributes │ └── AmountLessThanAttribute.cs │ ├── Exceptions │ ├── BankManagementSystemBaseException.cs │ └── InvalidUserException.cs │ ├── Helpers │ └── ClientHelper.cs │ ├── Validator.cs │ └── ViewModels │ ├── Asset │ ├── AssetViewModel.cs │ └── PurchaseAssetDto.cs │ ├── Credit │ └── CreditViewModel.cs │ ├── CreditCard │ └── CreditCardViewModel.cs │ ├── ErrorViewModel.cs │ └── Transaction │ └── TransactionViewModel.cs ├── Data ├── BankManagementSystem.Data │ ├── BankManagementSystem.Data.csproj │ ├── BankManagementSystemDbContext.cs │ ├── Migrations │ │ ├── 20190122190307_initial.Designer.cs │ │ ├── 20190122190307_initial.cs │ │ ├── 20190122191954_refactor_assets_client_rel.Designer.cs │ │ ├── 20190122191954_refactor_assets_client_rel.cs │ │ ├── 20190123043302_change_transaction_date_format.Designer.cs │ │ ├── 20190123043302_change_transaction_date_format.cs │ │ ├── 20190123045423_add_transaction_type.Designer.cs │ │ ├── 20190123045423_add_transaction_type.cs │ │ ├── 20190123055903_transaction_remove_description.Designer.cs │ │ ├── 20190123055903_transaction_remove_description.cs │ │ ├── 20190123122408_add_credit_property_rename_amount_property.Designer.cs │ │ ├── 20190123122408_add_credit_property_rename_amount_property.cs │ │ └── BankManagementSystemDbContextModelSnapshot.cs │ └── Repositories │ │ └── EfRepository.cs └── BankManagementSystem.Models │ ├── Asset.cs │ ├── BankManagementSystem.Models.csproj │ ├── Client.cs │ ├── Credit.cs │ ├── CreditCard.cs │ ├── Deposit.cs │ ├── Enum │ ├── AssetCategories.cs │ └── TransactionType.cs │ └── Transaction.cs ├── Services ├── BankManagementSystem.Services.DataServices │ ├── BankManagementSystem.Services.DataServices.csproj │ ├── BaseService.cs │ ├── IAssetService.cs │ ├── ICreditCardService.cs │ ├── ICreditService.cs │ ├── IDepositService.cs │ ├── IService.cs │ ├── ITransactionService.cs │ ├── IWithdrawService.cs │ └── Implementations │ │ ├── AssetService.cs │ │ ├── CreditCardService.cs │ │ ├── CreditService.cs │ │ ├── DepositService.cs │ │ ├── TransactionService.cs │ │ └── WithdrawService.cs └── BankManagementSystem.Services │ ├── BankManagementSystem.Services.csproj │ ├── IClientService.cs │ ├── IService.cs │ └── Implementations │ └── ClientService.cs └── Web ├── ApplicationBuilderAuthExtension.cs ├── Areas └── Identity │ ├── Models │ └── BindingModels │ │ ├── LoginInputBindngModel.cs │ │ └── RegisterInputBindingModel.cs │ └── Pages │ ├── Account │ ├── AccessDenied.cshtml │ ├── AccessDenied.cshtml.cs │ ├── ConfirmEmail.cshtml │ ├── ConfirmEmail.cshtml.cs │ ├── ExternalLogin.cshtml │ ├── ExternalLogin.cshtml.cs │ ├── ForgotPassword.cshtml │ ├── ForgotPassword.cshtml.cs │ ├── ForgotPasswordConfirmation.cshtml │ ├── ForgotPasswordConfirmation.cshtml.cs │ ├── Lockout.cshtml │ ├── Lockout.cshtml.cs │ ├── Login.cshtml │ ├── Login.cshtml.cs │ ├── LoginWith2fa.cshtml │ ├── LoginWith2fa.cshtml.cs │ ├── LoginWithRecoveryCode.cshtml │ ├── LoginWithRecoveryCode.cshtml.cs │ ├── Logout.cshtml │ ├── Logout.cshtml.cs │ ├── Manage │ │ ├── ChangePassword.cshtml │ │ ├── ChangePassword.cshtml.cs │ │ ├── DeletePersonalData.cshtml │ │ ├── DeletePersonalData.cshtml.cs │ │ ├── Disable2fa.cshtml │ │ ├── Disable2fa.cshtml.cs │ │ ├── DownloadPersonalData.cshtml │ │ ├── DownloadPersonalData.cshtml.cs │ │ ├── EnableAuthenticator.cshtml │ │ ├── EnableAuthenticator.cshtml.cs │ │ ├── ExternalLogins.cshtml │ │ ├── ExternalLogins.cshtml.cs │ │ ├── GenerateRecoveryCodes.cshtml │ │ ├── GenerateRecoveryCodes.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── ManageNavPages.cs │ │ ├── PersonalData.cshtml │ │ ├── PersonalData.cshtml.cs │ │ ├── ResetAuthenticator.cshtml │ │ ├── ResetAuthenticator.cshtml.cs │ │ ├── SetPassword.cshtml │ │ ├── SetPassword.cshtml.cs │ │ ├── TwoFactorAuthentication.cshtml │ │ ├── TwoFactorAuthentication.cshtml.cs │ │ ├── _Layout.cshtml │ │ ├── _ManageNav.cshtml │ │ ├── _StatusMessage.cshtml │ │ └── _ViewImports.cshtml │ ├── Register.cshtml │ ├── Register.cshtml.cs │ ├── ResetPassword.cshtml │ ├── ResetPassword.cshtml.cs │ ├── ResetPasswordConfirmation.cshtml │ ├── ResetPasswordConfirmation.cshtml.cs │ └── _ViewImports.cshtml │ ├── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── BankManagementSystem.Web.csproj ├── Controllers ├── AssetsController.cs ├── CreditCardsController.cs └── HomeController.cs ├── Infrastructure └── Extensions │ └── ServiceCollectionExtensions.cs ├── Mapping └── AutoMapperProfile.cs ├── Pages ├── Credit │ ├── Create.cshtml │ ├── Create.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Success.cshtml │ └── Success.cshtml.cs ├── Deposit │ ├── Create.cshtml │ ├── Create.cshtml.cs │ ├── Success.cshtml │ └── Success.cshtml.cs ├── Transaction │ ├── Index.cshtml │ └── Index.cshtml.cs ├── Withdraw │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Success.cshtml │ └── Success.cshtml.cs ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── Views ├── Assets │ ├── Create.cshtml │ ├── Index.cshtml │ ├── Purchase.cshtml │ └── Success.cshtml ├── CreditCards │ ├── Create.cshtml │ └── Index.cshtml ├── Home │ ├── Index.cshtml │ └── Privacy.cshtml ├── Shared │ ├── Error.cshtml │ ├── _AdministratorPartial.cshtml │ ├── _CookieConsentPartial.cshtml │ ├── _Layout.cshtml │ ├── _LoginPartial.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── css ├── custom.css └── site.css ├── favicon.ico ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /DBDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/DBDiagram.png -------------------------------------------------------------------------------- /Homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/Homepage.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/Login.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/README.md -------------------------------------------------------------------------------- /Register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/Register.png -------------------------------------------------------------------------------- /src/BankManagementSystem.Data.Common/BankManagementSystem.Data.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/BankManagementSystem.Data.Common/BankManagementSystem.Data.Common.csproj -------------------------------------------------------------------------------- /src/BankManagementSystem.Data.Common/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/BankManagementSystem.Data.Common/Repositories/IRepository.cs -------------------------------------------------------------------------------- /src/BankManagementSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/BankManagementSystem.sln -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/BankManagementSystem.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/BankManagementSystem.Common.csproj -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/BindingModels/Asset/CreateAssetBindingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/BindingModels/Asset/CreateAssetBindingModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/BindingModels/Asset/PurchaseAssetBindingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/BindingModels/Asset/PurchaseAssetBindingModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/BindingModels/Credit/CreateCreditBindingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/BindingModels/Credit/CreateCreditBindingModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/BindingModels/CreditCard/CreateCreditCardBindingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/BindingModels/CreditCard/CreateCreditCardBindingModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/BindingModels/Deposit/CreateDepositBindingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/BindingModels/Deposit/CreateDepositBindingModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/BindingModels/Withdraw/WithdrawBindingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/BindingModels/Withdraw/WithdrawBindingModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Constants/ActionConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Constants/ActionConstants.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Constants/AttributeDisplayNameConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Constants/AttributeDisplayNameConstants.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Constants/ControllerConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Constants/ControllerConstants.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Constants/ModelLenghtConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Constants/ModelLenghtConstants.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Constants/PageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Constants/PageConstants.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Constants/RoleConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Constants/RoleConstants.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Constants/ViewNameConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Constants/ViewNameConstants.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/CustomAttributes/AmountLessThanAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/CustomAttributes/AmountLessThanAttribute.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Exceptions/BankManagementSystemBaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Exceptions/BankManagementSystemBaseException.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Exceptions/InvalidUserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Exceptions/InvalidUserException.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Helpers/ClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Helpers/ClientHelper.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/Validator.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/ViewModels/Asset/AssetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/ViewModels/Asset/AssetViewModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/ViewModels/Asset/PurchaseAssetDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/ViewModels/Asset/PurchaseAssetDto.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/ViewModels/Credit/CreditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/ViewModels/Credit/CreditViewModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/ViewModels/CreditCard/CreditCardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/ViewModels/CreditCard/CreditCardViewModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/ViewModels/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/ViewModels/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Common/BankManagementSystem.Common/ViewModels/Transaction/TransactionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Common/BankManagementSystem.Common/ViewModels/Transaction/TransactionViewModel.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/BankManagementSystem.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/BankManagementSystem.Data.csproj -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/BankManagementSystemDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/BankManagementSystemDbContext.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190122190307_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190122190307_initial.Designer.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190122190307_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190122190307_initial.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190122191954_refactor_assets_client_rel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190122191954_refactor_assets_client_rel.Designer.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190122191954_refactor_assets_client_rel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190122191954_refactor_assets_client_rel.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123043302_change_transaction_date_format.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123043302_change_transaction_date_format.Designer.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123043302_change_transaction_date_format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123043302_change_transaction_date_format.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123045423_add_transaction_type.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123045423_add_transaction_type.Designer.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123045423_add_transaction_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123045423_add_transaction_type.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123055903_transaction_remove_description.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123055903_transaction_remove_description.Designer.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123055903_transaction_remove_description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123055903_transaction_remove_description.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123122408_add_credit_property_rename_amount_property.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123122408_add_credit_property_rename_amount_property.Designer.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/20190123122408_add_credit_property_rename_amount_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/20190123122408_add_credit_property_rename_amount_property.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Migrations/BankManagementSystemDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Migrations/BankManagementSystemDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Data/Repositories/EfRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Data/Repositories/EfRepository.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/Asset.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/BankManagementSystem.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/BankManagementSystem.Models.csproj -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/Client.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/Credit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/Credit.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/CreditCard.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/Deposit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/Deposit.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/Enum/AssetCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/Enum/AssetCategories.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/Enum/TransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/Enum/TransactionType.cs -------------------------------------------------------------------------------- /src/Data/BankManagementSystem.Models/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Data/BankManagementSystem.Models/Transaction.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/BankManagementSystem.Services.DataServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/BankManagementSystem.Services.DataServices.csproj -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/BaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/BaseService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/IAssetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/IAssetService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/ICreditCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/ICreditCardService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/ICreditService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/ICreditService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/IDepositService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/IDepositService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/IService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/ITransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/ITransactionService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/IWithdrawService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/IWithdrawService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/Implementations/AssetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/Implementations/AssetService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/Implementations/CreditCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/Implementations/CreditCardService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/Implementations/CreditService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/Implementations/CreditService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/Implementations/DepositService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/Implementations/DepositService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/Implementations/TransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/Implementations/TransactionService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services.DataServices/Implementations/WithdrawService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services.DataServices/Implementations/WithdrawService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services/BankManagementSystem.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services/BankManagementSystem.Services.csproj -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services/IClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services/IClientService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services/IService.cs -------------------------------------------------------------------------------- /src/Services/BankManagementSystem.Services/Implementations/ClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Services/BankManagementSystem.Services/Implementations/ClientService.cs -------------------------------------------------------------------------------- /src/Web/ApplicationBuilderAuthExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/ApplicationBuilderAuthExtension.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Models/BindingModels/LoginInputBindngModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Models/BindingModels/LoginInputBindngModel.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Models/BindingModels/RegisterInputBindingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Models/BindingModels/RegisterInputBindingModel.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Lockout.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Lockout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Lockout.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Logout.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Logout.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using BankManagementSystem.Web.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/BankManagementSystem.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/BankManagementSystem.Web.csproj -------------------------------------------------------------------------------- /src/Web/Controllers/AssetsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Controllers/AssetsController.cs -------------------------------------------------------------------------------- /src/Web/Controllers/CreditCardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Controllers/CreditCardsController.cs -------------------------------------------------------------------------------- /src/Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/Infrastructure/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Infrastructure/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Web/Mapping/AutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Mapping/AutoMapperProfile.cs -------------------------------------------------------------------------------- /src/Web/Pages/Credit/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Credit/Create.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Credit/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Credit/Create.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/Credit/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Credit/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Credit/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Credit/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/Credit/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Credit/Success.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Credit/Success.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Credit/Success.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/Deposit/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Deposit/Create.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Deposit/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Deposit/Create.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/Deposit/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Deposit/Success.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Deposit/Success.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Deposit/Success.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/Transaction/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Transaction/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Transaction/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Transaction/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/Withdraw/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Withdraw/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Withdraw/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Withdraw/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/Withdraw/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Withdraw/Success.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/Withdraw/Success.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/Withdraw/Success.cshtml.cs -------------------------------------------------------------------------------- /src/Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Program.cs -------------------------------------------------------------------------------- /src/Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Startup.cs -------------------------------------------------------------------------------- /src/Web/Views/Assets/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Assets/Create.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Assets/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Assets/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Assets/Purchase.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Assets/Purchase.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Assets/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Assets/Success.cshtml -------------------------------------------------------------------------------- /src/Web/Views/CreditCards/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/CreditCards/Create.cshtml -------------------------------------------------------------------------------- /src/Web/Views/CreditCards/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/CreditCards/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Shared/_AdministratorPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Shared/_AdministratorPartial.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/appsettings.Development.json -------------------------------------------------------------------------------- /src/Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/appsettings.json -------------------------------------------------------------------------------- /src/Web/wwwroot/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/css/custom.css -------------------------------------------------------------------------------- /src/Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenirusev/BankManagementSystem/HEAD/src/Web/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------