BankSystem7 0.2.2-beta

This is a prerelease version of BankSystem7.
There is a newer version of this package available.
See the version list below for details.
dotnet add package BankSystem7 --version 0.2.2-beta
NuGet\Install-Package BankSystem7 -Version 0.2.2-beta
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BankSystem7" Version="0.2.2-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BankSystem7 --version 0.2.2-beta
#r "nuget: BankSystem7, 0.2.2-beta"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BankSystem7 as a Cake Addin
#addin nuget:?package=BankSystem7&version=0.2.2-beta&prerelease

// Install BankSystem7 as a Cake Tool
#tool nuget:?package=BankSystem7&version=0.2.2-beta&prerelease

Bank system 7

This package was developed for common using and learning definite technology. It also let everybody to use bank system in its projects and change logic for your needs.

It's a beta version of library. Some exceptions can be weren't found.

Documentation

Structure of project

  1. Folder AppContext is folder where contain context classes for interaction with database without buisness logic.
  2. Folder Services contains 2 sub folders: Interfaces and Repositories.
  3. Folder Interfaces contains interfaces which describes structure of inherited classes.
  4. Folder Repositories is folder with all buisness logic of project. Only there simple developer has access.

How to interact with database?

Developer can interact with database using class BankServiceOptions that provides properties for a little configuration. Set connection string you can by set value to property Connection. Ensure create or delete database by setting value to properties EnsureCreated and EnsureDeleted.

Remember!

If you'll not change connection string to database in class BankServiceOptions or directly in repository classes program may don't work correctly. You can catch exception like "There isn't database which has been specified." because databases which was used in developing project may doesn't exist on your machine.

API documentation

AppContext

There are 2 classes context:

  1. BankContext - is responsible for handling database/tables with bank resources.
  2. BankAccountContext - is responsible for handling database/tables with banks accounts resources.
  3. CardContext - is responsible for handling database/tables with cards resources.
API BankContext

Methods:

  1. public ExceptionModel CreateOperation(Operation operation, OperationKind operationKind) - creates transaction operation.
  2. public ExceptionModel DeleteOperation(Operation operation) - delete transaction operation
  3. public ExceptionModel TakeCredit(BankAccount bankAccount, Credit credit) - gives money to user which creditionals specified in Credit.
  4. public ExceptionModel RepayCredit(BankAccount bankAccount, Credit credit) - handles repaying credit.
  5. private ExceptionModel BankAccountWithdraw(Bank bank, Operation operation) - withdraw money from bank's account.
  6. public ExceptionModel BankAccountWithdraw(BankAccount bankAccount, Bank bank, Operation operation) - withdraw money from user bank account and accrual to bank's account.
  7. private ExceptionModel BankAccountAccrual(BankAccount bankAccount, Bank bank, Operation operation) - accrual money to user bank account from bank's account.
  8. private ExceptionModel AddCredit(Credit credit) - adds a new credit field to database and binds it with user.
  9. private ExceptionModel RemoveCredit(Credit credit) - removes definite credit field from database.
  10. private StatusOperationCode StatusOperation(Operation operation, OperationKind operationKind) - returns status of operation for next handling of operation.

Properties:

  1. public DbSet<User> Users { get; set; } - an instance of the table Users in database.
  2. public DbSet<Bank> Banks { get; set; } -an instance of the table Banks in database.
  3. public DbSet<Operation> Operations { get; set; } - an instance of the table Operations in database.
  4. public DbSet<BankAccount> BankAccounts { get; set; } - an instance of the table BankAccounts in database.
  5. public DbSet<Credit> Credits { get; set; } - an instance of the table Credits in database.
API BankAccountContext

Properties:

  1. public DbSet<Order> Orders { get; set; } - an instance of the table Orders in database.
  2. public DbSet<BankAccount> BankAccounts { get; set; } - an instance of the table BankAccounts in database. <br>

Services

Services are dividing on 2 sub-folders:

  1. Interfaces
  2. Repositories

Interfaces

Here located interfaces which describes behavior of inherited repo-classes.

  1. Interface IRepository<T> - parent interface from which will inherite other interfaces and repo-classes. Describes main logic and structure of the project. Methods:
  • ExceptionModel Create(T item); - implements creating item and adding it in database.
  • ExceptionModel Update(T item); -implements updating item in database.
  • ExceptionModel Delete(T item); - implements deleting item from database.
  • IEnumerable<T> All { get; } - implements getting a sequence of the objects from database.
  • T Get(Expression<Func<T, bool>> predicate); - implements getting an object from database with func-condition.
  • bool Exist(Expression<Func<T, bool>> predicate); - implements checking exist object with in database func-condition.

Repositories

Repositories are implementation of various interfaces and working with context classes for interracting with database.

  1. BankRepository - implements interface IRepository<T> for handling bank model, contains methods for accrual or withdraw money from bank account and bank.
  2. BankAccountRepository - implements interface IRepository<T> for handling bank account model and Transfer money method.
  3. CardRepository - implements interface IRepository<T> for handling card model and Transfer money method.
  4. UserRepository - implements interface IRepository<T> for handling user model.

When cause exception or error?

There are some points when you can catch an exception or error while using api of project:

  1. You use default connection string instead of Your. Can happen so that on Your machine won't database with name which was specified in default connection string.
  2. You change content of repositories or context class. If You change some of these You can get an error. Example:
   protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
   {
       optionsBuilder.EnableSensitiveDataLogging();
       optionsBuilder.UseSqlServer(queryConnection);
   }

You'll write something like this

   protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
   {
       optionsBuilder.EnableSensitiveDataLogging();
       optionsBuilder.UseSqlServer();
   }
  1. You use methods incorrectly. Example: You want to delete operation therefore You have to use method DeleteOperation(...) but You use method CreateOperation(...) and of course You'll get an exception because method CreateOperation(...)has return type ExceptionModel and it'll returns ExceptionModel.OperationFailed because same operation already exist in the database which You are using.
Remember!

Always change connection string either directly in context class, repository classes or use class BankServiceOptions for configuration. In any situations when Your program, OS or something else was broken, only You is responsible for it. Please, be more intelligent. :>

Conclusion

Dowloading and next using this package is your respoinsible and only You decide use it or not. All exceptions and crashes of your projects is responsible on You. We was tested our product in many tests and have a conclusion in which says that all methods and logic of project are working correctly. So, we wish You luck.

Sincerely, hayako.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BankSystem7:

Package Downloads
Standart7

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.5.8 116 9/13/2023
0.5.7 81 9/11/2023
0.5.6 112 7/22/2023
0.5.5 90 7/1/2023
0.5.4 85 6/19/2023
0.5.3 90 6/19/2023
0.5.2 87 6/3/2023
0.5.1 81 5/22/2023
0.5.0 80 5/21/2023
0.4.9 81 5/14/2023
0.4.8 80 5/6/2023
0.4.7 76 5/6/2023
0.4.6 80 5/6/2023
0.4.5 81 5/6/2023
0.4.4 87 5/2/2023
0.4.2 86 4/29/2023
0.4.1 86 4/27/2023
0.4.0 83 4/27/2023
0.3.9 84 4/25/2023
0.3.8 91 4/19/2023
0.3.7 86 4/19/2023
0.3.6-beta 77 4/13/2023
0.3.5-beta 73 4/12/2023
0.3.4-beta 72 4/10/2023
0.3.3-beta 76 4/3/2023
0.3.2-beta 83 4/3/2023
0.3.1-beta 77 4/2/2023
0.3.0-beta 81 4/1/2023
0.2.9-beta 84 4/1/2023
0.2.7-beta 92 3/28/2023
0.2.6-beta 100 3/24/2023
0.2.5-beta 103 3/20/2023
0.2.4-beta 102 3/20/2023
0.2.3-beta 96 3/20/2023
0.2.2-beta 104 3/20/2023
0.2.1-beta 106 3/20/2023
0.1.3-beta 104 3/20/2023
0.1.2-beta 102 3/19/2023
0.1.0-beta 99 3/19/2023